Active IQ Unified Manager Discussions

I was asked the following, can anyone offer guidance?

mgoldman
2,327 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
2,318 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