NetApp Community Update
This site will enter Read Only mode on July 23 as we prepare to move to a new platform. You will still be able to view content, but posting and replying will be temporarily disabled.
We're excited to launch our new Community experience on July 30 and more information will follow soon.
Stay connected during the transition - Join our Discord community today.

Active IQ Unified Manager Discussions

I was asked the following, can anyone offer guidance?

mgoldman
3,335 Views

Is there a way to capture and parse the output of "volume show-footprint -fields volume-blocks-footprint" from within WFA?


Thanks,

 

Senjak

1 REPLY 1

geringer
3,325 Views

Senjak,

    It looks like "Get-NcVolFootptint" is the commandlet that returns this data.  You can store all the footprint data for a vserver with the following command:

 

$Footprint = Get-NcVolFootprint -Vserver $vServerName

 

You can then look at the footprint data for each volume with $Footprint.VolumeBlocksFootprint[index]

 

Hope that helps,

 

Mike

Public