PowerCLI

 View Only
  • 1.  Cluster cpu info

    Posted May 22, 2018 08:19 AM

    Hello,

    I have this script where I can get some CPU/Memory info:

    Get-VMHost -Name tec-vm-ki* , tec-vm-* |

    Select Name,

        @{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)}} | Export-Csv -Path C:\Users\gemela\cpu_mem_Hardware_info.csv -NoTypeInformation -UseCulture

    I would like to add some columns;

    Number of CPU for Cluster

    Cpu (number) usage for each host

    Memory (Gb) usage for each host

    Thanks



  • 2.  RE: Cluster cpu info

    Posted May 22, 2018 08:30 AM

    Try like this

    Get-VMHost -Name tec-vm-ki* , tec-vm-* | 

    Select Name,

        @{N='CPUCoreCluster';E={(Get-Cluster -VMHost $_).ExtensionData.Summary.NumCpuCores}},

        @{N='CPUCoreESXi';E={$_.NumCpu}},

        @{N='MemGBEsxi';E={$_.MemoryTotalGB}},

      @{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)}} |

    Export-Csv -Path C:\Users\gemela\cpu_mem_Hardware_info.csv -NoTypeInformation -UseCulture 



  • 3.  RE: Cluster cpu info

    Posted May 22, 2018 09:13 AM

    Great! This is what I wanted, thanks a lot LucD :-)



  • 4.  RE: Cluster cpu info

    Posted May 22, 2018 09:22 AM

    One more info,  can include "hyperthreading" if is enabled or not?



  • 5.  RE: Cluster cpu info
    Best Answer

    Posted May 22, 2018 09:27 AM

    Sure, try like this

    Get-VMHost -Name tec-vm-ki* , tec-vm-* |

    Select Name,

      @{N='CPUCoreCluster';E={(Get-Cluster -VMHost $_).ExtensionData.Summary.NumCpuCores}},

      @{N='CPUCoreESXi';E={$_.NumCpu}},

      @{N='MemGBEsxi';E={$_.MemoryTotalGB}},

      HyperthreadingActive,

      @{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)}} |

    Export-Csv -Path C:\Users\gemela\cpu_mem_Hardware_info.csv -NoTypeInformation -UseCulture



  • 6.  RE: Cluster cpu info

    Posted May 22, 2018 09:51 AM

    Perfect! many thanks