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.

Microsoft Virtualization Discussions

get-nasis

IANHOSKINSCNO
4,742 Views

Using the new version of the toolkit and was looking for the dedup percentage savings, but it is missing.

PS C:\Users\cno5f5> get-nasis /vol/corpsys


BlocksSkippedSharing                        :
ChangelogUsedPercent                        :
CheckpointOpType                            : -
CheckpointProgress                          : -
CheckpointStage                             : -
CheckpointSubStage                          : -
CheckpointTime                              : 0
IsCompressionEnabled                        :
IsInlineCompressionEnabled                  :
LastOperationBeginTimestamp                 : 1340326801
LastOperationEndTimestamp                   : 1340330225
LastOperationError                          :
LastOperationSize                           : 62 GB
LastOperationSizeBytes                      :
LastOperationState                          :
LastSuccessOperationBeginTimestamp          :
LastSuccessOperationEndTimestamp            :
LogicalData                                 :
MinimumBlocksShared                         :
Path                                        : /vol/corpsys
Progress                                    : Idle for 12:10:43
QueuedJobType                               :
Schedule                                    : auto
StaleFingerprintPercentage                  :
State                                       : Enabled
Status                                      : Idle
Type                                        : Regular
BlocksSkippedSharingSpecified               : False
ChangelogUsedPercentSpecified               : False
CheckpointTimeSpecified                     : True
IsCompressionEnabledSpecified               : False
IsInlineCompressionEnabledSpecified         : False
LastOperationBeginTimestampSpecified        : True
LastOperationEndTimestampSpecified          : True
LastOperationSizeBytesSpecified             : False
LastSuccessOperationBeginTimestampSpecified : False
LastSuccessOperationEndTimestampSpecified   : False
MinimumBlocksSharedSpecified                : False
StaleFingerprintPercentageSpecified         : False

1 ACCEPTED SOLUTION

beam
4,742 Views

You should be able to find what you're looking for using Get-NaVol.

PS C:\Users\SBeam> $vol = Get-NaVol vol4

PS C:\Users\SBeam> $vol.Sis.SisInfo | fl *

CompressSaved        :

DedupSaved           :

LastOperationBegin   : Tue May  1 16:00:00 EDT 2012

LastOperationEnd     : Tue May  1 16:00:01 EDT 2012

LastOperationError   :

LastOperationSize    : 74756096

PercentCompressSaved :

PercentDedupSaved    :

PercentTotalSaved    :

PercentageSaved      : 38

Progress             : idle for 1242:25:08

Schedule             : auto

SizeSaved            : 4294975488

SizeShared           : 2147491840

State                : enabled

Status               : idle

TotalSaved           :

Type                 : regular

Hope that helps!

-Steven

View solution in original post

2 REPLIES 2

beam
4,743 Views

You should be able to find what you're looking for using Get-NaVol.

PS C:\Users\SBeam> $vol = Get-NaVol vol4

PS C:\Users\SBeam> $vol.Sis.SisInfo | fl *

CompressSaved        :

DedupSaved           :

LastOperationBegin   : Tue May  1 16:00:00 EDT 2012

LastOperationEnd     : Tue May  1 16:00:01 EDT 2012

LastOperationError   :

LastOperationSize    : 74756096

PercentCompressSaved :

PercentDedupSaved    :

PercentTotalSaved    :

PercentageSaved      : 38

Progress             : idle for 1242:25:08

Schedule             : auto

SizeSaved            : 4294975488

SizeShared           : 2147491840

State                : enabled

Status               : idle

TotalSaved           :

Type                 : regular

Hope that helps!

-Steven

IANHOSKINSCNO
4,742 Views

cool... i didn't know that info was in get-navol

thanks

PS C:\Users\cno5f5> (get-navol addr).sis.sisinfo


CompressSaved        :
DedupSaved           :
LastOperationBegin   : Thu Jun 21 19:00:00 EDT 2012
LastOperationEnd     : Thu Jun 21 20:49:18 EDT 2012
LastOperationError   :
LastOperationSize    : 127625146368
PercentCompressSaved :
PercentDedupSaved    :
PercentTotalSaved    :
PercentageSaved      : 49
Progress             : idle for 13:44:27
Schedule             : auto
SizeSaved            : 297299369984
SizeShared           : 94946349056
State                : enabled
Status               : idle
TotalSaved           :
Type                 : regular

Public