VMware console - host performance stats

VMware console - host performance stats

0 vote

avatar

Hi,
will there be a tab where we can see the simple VMware host performance stats?
This would be fine (PowerCLI script):
Get-VMHost-Name<Esx>|
SelectName,
@{N='CPU GHz Capacity';E={[math]::Round($_.CpuTotalMhz/1000,2)}},
@{N='CPU GHz Used';E={[math]::Round($_.CpuUsageMhz/1000,2)}},
@{N='CPU GHz Free';E={[math]::Round(($_.CpuTotalMhz -$_.CpuUsageMhz)/1000,2)}},
@{N='Memory Capacity GB';E={[math]::Round($_.MemoryTotalGB,2)}},
@{N='Memory Used GB';E={[math]::Round($_.MemoryUsageGB,2)}},
@{N='Memory Free GB';E={[math]::Round(($_.MemoryTotalGB -$_.MemoryUsageGB),2)}}
@{N='datastore Capacity GB';E={[math]::Round($_.StorageUsageGB,2)}},
@{N='datastore Used GB';E={[math]::Round($_.StorageUsageGB,2)}},
@{N='datastore Free GB';E={[math]::Round(($_.StorageUsageGB-$_.MemoryUsageGB),2)}}

Regards
edited by VS on 9/1/2015

All Comments (2)

avatar

I will add this to the same enhancement request. It's a good idea.

David Hervieux

avatar

Thank you David