Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Get-NaEfficiency (TotalLunSize and OverProvisioningPercent) commands aren't working properly
2016-07-18
06:06 AM
3,059 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi all ,
Get-NaEfficiency (TotalLunSize and OverProvisioningPercent) commands aren't working properly
vol1 : 100g (thin)
vol2 : 100g (thick)
lun1 : /vol/vol1/lun1 , 150g(thin)
lun2 : /vol/vol2/lun1 , 50g(thick)
(Get-NaEfficiency vol1).TotalLunSize is "0"
(Get-NaEfficiency vol1).OverProvisioningPercent is "0"
(Get-NaEfficiency vol2).TotalLunSize is "0"
(Get-NaEfficiency vol2).OverProvisioningPercent is "0"
TotalLunSize: Total size of all the LUNs contained within this volume. This value is only valid when the -Recurse switch is present.
OverProvisioningPercent: The LUN over-provisioning percent of the volume. This value is equal to (TotalLunSize / Capacity) * 100. This value is only valid when the -Recurse switch is present.
But it must be different value.
do you have any idea ?
Solved! See The Solution
1 ACCEPTED SOLUTION
tsener has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You'll need to use the "-Recurse" switch for those values to be populated:
(Get-NaEfficiency vol1 -Recurse).TotalLunSize (Get-NaEfficiency vol2 -Recurse).TotalLunSize
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.
2 REPLIES 2
tsener has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You'll need to use the "-Recurse" switch for those values to be populated:
(Get-NaEfficiency vol1 -Recurse).TotalLunSize (Get-NaEfficiency vol2 -Recurse).TotalLunSize
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you asulliva
