Hello All,
How can I create a view for the VMs to get the VM name, vCPU, hostname, physical CPU
For example:
VM: windos server 1 - vCPU: 8 vcpus - HOST Name: esx01 - physical CPU: 20
Thanks,
Thank you, @KabirAli82 for your help
Actually, I am able to get that by creating super matric
I have created 2 super metrics (ESXi Host CPU Cores and Cluster Physical CPUs), the object type is Virtual machine, and the Formula is Host System, and all looks good now.
sum(${adaptertype=VMWARE, objecttype=HostSystem, attribute=hardware|cpuInfo|numCpuCores, depth=-1})
The host is a different object type, and thus you can't get that in the same view. But if you really really have to get the physical CPU count in the same view, then you'll need to create a super metric for the host count.
Here is a view of only the VM info.
Thank you, @KabirAli82 for your help
Actually, I am able to get that by creating super matric
I have created 2 super metrics (ESXi Host CPU Cores and Cluster Physical CPUs), the object type is Virtual machine, and the Formula is Host System, and all looks good now.
sum(${adaptertype=VMWARE, objecttype=HostSystem, attribute=hardware|cpuInfo|numCpuCores, depth=-1})
