From 450b088faf78de02b1cf4613d2db49be910b260b Mon Sep 17 00:00:00 2001 From: Stefan Kurek Date: Fri, 28 Jun 2024 11:36:45 -0400 Subject: [PATCH] [chore] receiver/vcenter - Updates govmomi to v0.37.3 and fixes unit tests (#33721) **Description:** Updates govmomi library for `vcenterreceiver` to v0.37.3. This makes use of the `RetrievePropertiesEx` function as `RetrieveProperties` is deprecated. All of the related unit tests had to be redone to consider this. There are no customer facing changes with this. **Link to tracking Issue:** #32453 **Testing:** Unit tests/integration tests pass. Manual check against live environment. **Documentation:** No customer facing changes. --- cmd/otelcontribcol/go.mod | 2 +- cmd/otelcontribcol/go.sum | 4 +- receiver/vcenterreceiver/go.mod | 2 +- receiver/vcenterreceiver/go.sum | 4 +- .../internal/mockserver/client_mock.go | 23 +- .../mockserver/responses/cluster-children.xml | 28 +- .../mockserver/responses/compute-children.xml | 28 +- .../responses/compute-default-properties.xml | 218 +- .../responses/datacenter-folder.xml | 19 + .../responses/datacenter-properties.xml | 48 +- .../mockserver/responses/datacenter.xml | 16 +- .../datastore-default-properties.xml | 30 +- .../responses/host-default-properties.xml | 152 +- .../responses/host-folder-children.xml | 44 +- .../responses/host-folder-parent.xml | 56 +- .../mockserver/responses/perf-manager.xml | 24966 ++++++++-------- .../resource-pool-default-properties.xml | 530 +- .../responses/retrieve-properties-empty.xml | 2 +- .../responses/vm-default-properties.xml | 524 +- .../responses/vm-folder-children.xml | 96 +- .../responses/vm-folder-parents.xml | 56 +- 21 files changed, 13471 insertions(+), 13377 deletions(-) create mode 100644 receiver/vcenterreceiver/internal/mockserver/responses/datacenter-folder.xml diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index 85b95a904e88..db2cf0c9fd17 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -736,7 +736,7 @@ require ( github.com/vishvananda/netlink v1.1.1-0.20201029203352-d40f9887b852 // indirect github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae // indirect github.com/vmware/go-vmware-nsxt v0.0.0-20230223012718-d31b8a1ca05e // indirect - github.com/vmware/govmomi v0.36.3 // indirect + github.com/vmware/govmomi v0.37.3 // indirect github.com/vultr/govultr/v2 v2.17.2 // indirect github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect github.com/x448/float16 v0.8.4 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index 7b58e0eff920..9c18546ab5ef 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -2265,8 +2265,8 @@ github.com/vmihailenco/tagparser v0.1.2 h1:gnjoVuB/kljJ5wICEEOpx98oXMWPLj22G67Vb github.com/vmihailenco/tagparser v0.1.2/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgqMEUPoW2WPyhdI= github.com/vmware/go-vmware-nsxt v0.0.0-20230223012718-d31b8a1ca05e h1:Vu41Q0Pv3yMdd+tcDW6QeEUIK2L+9ZrPrq8NAMrKSLc= github.com/vmware/go-vmware-nsxt v0.0.0-20230223012718-d31b8a1ca05e/go.mod h1:aRq5pxwgdJpAuP97SCjX1+Db32z/b0dggQ07FDF+fqE= -github.com/vmware/govmomi v0.36.3 h1:1Ng3CBNQVbFjCQbKtfsewy5o3dFa+EoTjqeThVISUBc= -github.com/vmware/govmomi v0.36.3/go.mod h1:mtGWtM+YhTADHlCgJBiskSRPOZRsN9MSjPzaZLte/oQ= +github.com/vmware/govmomi v0.37.3 h1:L2y2Ba09tYiZwdPtdF64Ox9QZeJ8vlCUGcAF9SdODn4= +github.com/vmware/govmomi v0.37.3/go.mod h1:mtGWtM+YhTADHlCgJBiskSRPOZRsN9MSjPzaZLte/oQ= github.com/vultr/govultr/v2 v2.17.2 h1:gej/rwr91Puc/tgh+j33p/BLR16UrIPnSr+AIwYWZQs= github.com/vultr/govultr/v2 v2.17.2/go.mod h1:ZFOKGWmgjytfyjeyAdhQlSWwTjh2ig+X49cAp50dzXI= github.com/wk8/go-ordered-map/v2 v2.1.8 h1:5h/BUHu93oj4gIdvHHHGsScSTMijfx5PeYkE/fJgbpc= diff --git a/receiver/vcenterreceiver/go.mod b/receiver/vcenterreceiver/go.mod index e5f3f4f34a13..fc47ba574a0e 100644 --- a/receiver/vcenterreceiver/go.mod +++ b/receiver/vcenterreceiver/go.mod @@ -9,7 +9,7 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.103.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.103.0 github.com/stretchr/testify v1.9.0 - github.com/vmware/govmomi v0.36.3 + github.com/vmware/govmomi v0.37.3 go.opentelemetry.io/collector/component v0.103.0 go.opentelemetry.io/collector/config/configopaque v1.10.0 go.opentelemetry.io/collector/config/configtls v0.103.0 diff --git a/receiver/vcenterreceiver/go.sum b/receiver/vcenterreceiver/go.sum index 74ba8e162e2b..14d7895435c6 100644 --- a/receiver/vcenterreceiver/go.sum +++ b/receiver/vcenterreceiver/go.sum @@ -140,8 +140,8 @@ github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFA github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= github.com/tklauser/numcpus v0.6.1 h1:ng9scYS7az0Bk4OZLvrNXNSAO2Pxr1XXRAPyjhIx+Fk= github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= -github.com/vmware/govmomi v0.36.3 h1:1Ng3CBNQVbFjCQbKtfsewy5o3dFa+EoTjqeThVISUBc= -github.com/vmware/govmomi v0.36.3/go.mod h1:mtGWtM+YhTADHlCgJBiskSRPOZRsN9MSjPzaZLte/oQ= +github.com/vmware/govmomi v0.37.3 h1:L2y2Ba09tYiZwdPtdF64Ox9QZeJ8vlCUGcAF9SdODn4= +github.com/vmware/govmomi v0.37.3/go.mod h1:mtGWtM+YhTADHlCgJBiskSRPOZRsN9MSjPzaZLte/oQ= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= diff --git a/receiver/vcenterreceiver/internal/mockserver/client_mock.go b/receiver/vcenterreceiver/internal/mockserver/client_mock.go index d08e6a1c31d7..467dfc21a78d 100644 --- a/receiver/vcenterreceiver/internal/mockserver/client_mock.go +++ b/receiver/vcenterreceiver/internal/mockserver/client_mock.go @@ -75,8 +75,8 @@ func routeBody(t *testing.T, requestType string, body map[string]any) ([]byte, e return loadResponse("login.xml") case "Logout": return loadResponse("logout.xml") - case "RetrieveProperties": - return routeRetreiveProperties(t, body) + case "RetrievePropertiesEx": + return routeRetreivePropertiesEx(t, body) case "QueryPerf": return routePerformanceQuery(t, body) case "CreateContainerView": @@ -86,8 +86,8 @@ func routeBody(t *testing.T, requestType string, body map[string]any) ([]byte, e return []byte{}, errNotFound } -func routeRetreiveProperties(t *testing.T, body map[string]any) ([]byte, error) { - rp, ok := body["RetrieveProperties"].(map[string]any) +func routeRetreivePropertiesEx(t *testing.T, body map[string]any) ([]byte, error) { + rp, ok := body["RetrievePropertiesEx"].(map[string]any) require.True(t, ok) specSet := rp["specSet"].(map[string]any) @@ -108,13 +108,24 @@ func routeRetreiveProperties(t *testing.T, body map[string]any) ([]byte, error) var contentType string if !objectSetArray { obj = objectSet["obj"].(map[string]any) - content = obj["#content"].(string) + if value, exists := obj["#content"]; exists { + content = value.(string) + } else { + content = "" + } contentType = obj["-type"].(string) } switch { case content == "group-d1" && contentType == "Folder": - return loadResponse("datacenter.xml") + for _, i := range propSetArray { + m, ok := i.(map[string]any) + require.True(t, ok) + if m["type"] == "Folder" { + return loadResponse("datacenter.xml") + } + } + return loadResponse("datacenter-folder.xml") case content == "datacenter-3" && contentType == "Datacenter": return loadResponse("datacenter-properties.xml") diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/cluster-children.xml b/receiver/vcenterreceiver/internal/mockserver/responses/cluster-children.xml index 9fd8f9a297fc..067351c48a1e 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/cluster-children.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/cluster-children.xml @@ -1,21 +1,25 @@ - + - resgroup-9 - - name - Resources - + + resgroup-9 + + name + Resources + + - host-1002 - - name - esxi-27971.cf5e88ac.australia-southeast1.gve.goog - + + host-1002 + + name + esxi-27971.cf5e88ac.australia-southeast1.gve.goog + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/compute-children.xml b/receiver/vcenterreceiver/internal/mockserver/responses/compute-children.xml index b8560dc6d6e3..367f3ea3ad54 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/compute-children.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/compute-children.xml @@ -1,21 +1,25 @@ - + - resgroup-10 - - name - Resources - + + resgroup-10 + + name + Resources + + - host-1003 - - name - esxi-111.europe-southeast1.gve.goog - + + host-1003 + + name + esxi-111.europe-southeast1.gve.goog + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/compute-default-properties.xml b/receiver/vcenterreceiver/internal/mockserver/responses/compute-default-properties.xml index 53e905d1a8e3..289706c6b1a2 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/compute-default-properties.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/compute-default-properties.xml @@ -1,116 +1,120 @@ - + - domain-c8 - - name - Cluster - - - datastore - - datastore-1003 - - - - host - - host-1002 - - - - summary - - 280044 - 2468289376256 - 108 - 216 - 252846 - 2140347 - 3 - 3 - green - 1 - - 92 - 91 - 100 - - 64 - 163 - 23 - 100 - 0 - 0 - 0 - 0 - 13 - - 252846 - 2140347 - 18000 - 180640 - 0 - 0 - 22075 - 181115 - 8349 - 14880 - 185343 - 0 - 13 - - intel-cascadelake - vsga-baseline - - 57 - 92 - 363 - - notInMaintenanceMode - healthy - - host-1002 - 1 - - - + + domain-c8 + + name + Cluster + + + datastore + + datastore-1003 + + + + host + + host-1002 + + + + summary + + 280044 + 2468289376256 + 108 + 216 + 252846 + 2140347 + 3 + 3 + green + 1 + + 92 + 91 + 100 + + 64 + 163 + 23 + 100 + 0 + 0 + 0 + 0 + 13 + + 252846 + 2140347 + 18000 + 180640 + 0 + 0 + 22075 + 181115 + 8349 + 14880 + 185343 + 0 + 13 + + intel-cascadelake + vsga-baseline + + 57 + 92 + 363 + + notInMaintenanceMode + healthy + + host-1002 + 1 + + + + - domain-c9 - - name - esxi-111.europe-southeast1.gve.goog - - - datastore - - datastore-1003 - - - - host - - host-1003 - - - - summary - - 252846 - 2140347 - 108 - 216 - 3 - 3 - 280044 - 2468289376256 - green - - + + domain-c9 + + name + esxi-111.europe-southeast1.gve.goog + + + datastore + + datastore-1003 + + + + host + + host-1003 + + + + summary + + 252846 + 2140347 + 108 + 216 + 3 + 3 + 280044 + 2468289376256 + green + + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/datacenter-folder.xml b/receiver/vcenterreceiver/internal/mockserver/responses/datacenter-folder.xml new file mode 100644 index 000000000000..34a23fb3afde --- /dev/null +++ b/receiver/vcenterreceiver/internal/mockserver/responses/datacenter-folder.xml @@ -0,0 +1,19 @@ + + + + + + + group-d1 + + name + Datacenters + + + + + + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/datacenter-properties.xml b/receiver/vcenterreceiver/internal/mockserver/responses/datacenter-properties.xml index 83eda304f6aa..588869556ff7 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/datacenter-properties.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/datacenter-properties.xml @@ -1,30 +1,32 @@ - + - datacenter-3 - - datastoreFolder - group-s6 - - - hostFolder - group-h5 - - - name - Datacenter - - - networkFolder - group-n7 - - - vmFolder - group-v4 - + + datacenter-3 + + datastoreFolder + group-s6 + + + hostFolder + group-h5 + + + name + Datacenter + + + networkFolder + group-n7 + + + vmFolder + group-v4 + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/datacenter.xml b/receiver/vcenterreceiver/internal/mockserver/responses/datacenter.xml index 624667a9170b..6789422edd85 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/datacenter.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/datacenter.xml @@ -4,14 +4,16 @@ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - + - datacenter-3 - - name - Datacenter - + + datacenter-3 + + name + Datacenter + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/datastore-default-properties.xml b/receiver/vcenterreceiver/internal/mockserver/responses/datastore-default-properties.xml index ad43d9e87c9b..6b5bf38db96a 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/datastore-default-properties.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/datastore-default-properties.xml @@ -1,22 +1,24 @@ - + + datastore-1003 - - name - vsanDatastore - - - summary.capacity - 57611315257344 - - - summary.freeSpace - 51693551508648 - + + name + vsanDatastore + + + summary.capacity + 57611315257344 + + + summary.freeSpace + 51693551508648 + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/host-default-properties.xml b/receiver/vcenterreceiver/internal/mockserver/responses/host-default-properties.xml index 0f9a08b0d43a..2f1ce3c9c456 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/host-default-properties.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/host-default-properties.xml @@ -1,83 +1,87 @@ - + - host-1002 - - name - esxi-27971.cf5e88ac.australia-southeast1.gve.goog - - - parent - domain-c8 - - - summary.hardware.cpuMhz - 2593 - - - summary.hardware.memorySize - 822763126784 - - - summary.hardware.numCpuCores - 36 - - - summary.quickStats.overallCpuUsage - 6107 - - - summary.quickStats.overallMemoryUsage - 140833 - - - vm - - vm-1040 - vm-6004 - vm-template - - + + host-1002 + + name + esxi-27971.cf5e88ac.australia-southeast1.gve.goog + + + parent + domain-c8 + + + summary.hardware.cpuMhz + 2593 + + + summary.hardware.memorySize + 822763126784 + + + summary.hardware.numCpuCores + 36 + + + summary.quickStats.overallCpuUsage + 6107 + + + summary.quickStats.overallMemoryUsage + 140833 + + + vm + + vm-1040 + vm-6004 + vm-template + + + - host-1003 - - name - esxi-111.europe-southeast1.gve.goog - - - parent - domain-c9 - - - summary.hardware.cpuMhz - 2593 - - - summary.hardware.memorySize - 822763126784 - - - summary.hardware.numCpuCores - 36 - - - summary.quickStats.overallCpuUsage - 6107 - - - summary.quickStats.overallMemoryUsage - 140833 - - - vm - - vm-6005 - - + + host-1003 + + name + esxi-111.europe-southeast1.gve.goog + + + parent + domain-c9 + + + summary.hardware.cpuMhz + 2593 + + + summary.hardware.memorySize + 822763126784 + + + summary.hardware.numCpuCores + 36 + + + summary.quickStats.overallCpuUsage + 6107 + + + summary.quickStats.overallMemoryUsage + 140833 + + + vm + + vm-6005 + + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/host-folder-children.xml b/receiver/vcenterreceiver/internal/mockserver/responses/host-folder-children.xml index b99300e45326..5084511a7833 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/host-folder-children.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/host-folder-children.xml @@ -1,29 +1,33 @@ - + - domain-c8 - - name - Cluster - - - resourcePool - resgroup-9 - + + domain-c8 + + name + Cluster + + + resourcePool + resgroup-9 + + - domain-c9 - - name - StandaloneHost - - - resourcePool - resgroup-10 - + + domain-c9 + + name + StandaloneHost + + + resourcePool + resgroup-10 + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/host-folder-parent.xml b/receiver/vcenterreceiver/internal/mockserver/responses/host-folder-parent.xml index 2bce16abf9cf..3e555ab0b9eb 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/host-folder-parent.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/host-folder-parent.xml @@ -1,36 +1,42 @@ - + - group-h5 - - name - host - - - parent - datacenter-3 - + + group-h5 + + name + host + + + parent + datacenter-3 + + - datacenter-3 - - name - Datacenter - - - parent - group-d1 - + + datacenter-3 + + name + Datacenter + + + parent + group-d1 + + - group-d1 - - name - Datacenters - + + group-d1 + + name + Datacenters + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/perf-manager.xml b/receiver/vcenterreceiver/internal/mockserver/responses/perf-manager.xml index 11e1934daccf..3da3b3745def 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/perf-manager.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/perf-manager.xml @@ -1,12489 +1,12491 @@ - + - PerfMgr - - perfCounter - - - 1 - - - CPU usage as a percentage during the interval - usage - - - - CPU - cpu - - - - Percentage - percent - - none - rate - 4 - 4 - - - 2 - - - CPU usage as a percentage during the interval - usage - - - - CPU - cpu - - - - Percentage - percent - - average - rate - 1 - 3 - - - 3 - - - CPU usage as a percentage during the interval - usage - - - - CPU - cpu - - - - Percentage - percent - - minimum - rate - 4 - 4 - - - 4 - - - CPU usage as a percentage during the interval - usage - - - - CPU - cpu - - - - Percentage - percent - - maximum - rate - 4 - 4 - - - 5 - - - CPU usage in megahertz during the interval - usagemhz - - - - CPU - cpu - - - - Megahertz - megaHertz - - none - rate - 4 - 4 - - - 6 - - - CPU usage in megahertz during the interval - usagemhz - - - - CPU - cpu - - - - Megahertz - megaHertz - - average - rate - 1 - 3 - - - 7 - - - CPU usage in megahertz during the interval - usagemhz - - - - CPU - cpu - - - - Megahertz - megaHertz - - minimum - rate - 4 - 4 - - - 8 - - - CPU usage in megahertz during the interval - usagemhz - - - - CPU - cpu - - - - Megahertz - megaHertz - - maximum - rate - 4 - 4 - - - 9 - - - Total CPU capacity reserved by virtual machines - reservedCapacity - - - - CPU - cpu - - - - Megahertz - megaHertz - - average - absolute - 2 - 3 - - - 10 - - - Amount of time spent on system processes on each virtual CPU in the virtual machine - system - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 3 - 3 - - - 11 - - - Total CPU time spent in wait state - wait - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 3 - 3 - - - 12 - - - Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval - ready - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 1 - 3 - - - 13 - - - Total time that the CPU spent in an idle state - idle - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 2 - 3 - - - 14 - - - Total CPU usage - used - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 3 - 3 - - - 15 - - - Capacity in MHz of the physical CPU cores - capacity.provisioned - - - - CPU - cpu - - - - Megahertz - megaHertz - - average - absolute - 4 - 4 - - - 16 - - - CPU resources devoted by the ESXi scheduler to the virtual machines and resource pools - capacity.entitlement - - - - CPU - cpu - - - - Megahertz - megaHertz - - average - absolute - 4 - 4 - - - 17 - - - CPU usage as a percent during the interval - capacity.usage - - - - CPU - cpu - - - - Megahertz - megaHertz - - average - rate - 4 - 4 - - - 18 - - - The amount of CPU resources a VM would use if there were no CPU contention - capacity.demand - - - - CPU - cpu - - - - Megahertz - megaHertz - - average - absolute - 4 - 4 - - - 19 - - - Percent of time the VM is unable to run because it is contending for access to the physical CPU(s) - capacity.contention - - - - CPU - cpu - - - - Percentage - percent - - average - rate - 4 - 4 - - - 20 - - - The number of virtual processors provisioned to the entity - corecount.provisioned - - - - CPU - cpu - - - - Number - number - - average - absolute - 4 - 4 - - - 21 - - - The number of virtual processors running on the host - corecount.usage - - - - CPU - cpu - - - - Number - number - - average - absolute - 4 - 4 - - - 22 - - - Time the VM vCPU is ready to run, but is unable to run due to co-scheduling constraints - corecount.contention - - - - CPU - cpu - - - - Percentage - percent - - average - rate - 4 - 4 - - - 23 - - - Percentage of host physical memory that has been consumed - usage - - - - Memory - mem - - - - Percentage - percent - - none - absolute - 4 - 4 - - - 24 - - - Percentage of host physical memory that has been consumed - usage - - - - Memory - mem - - - - Percentage - percent - - average - absolute - 1 - 3 - - - 25 - - - Percentage of host physical memory that has been consumed - usage - - - - Memory - mem - - - - Percentage - percent - - minimum - absolute - 4 - 4 - - - 26 - - - Percentage of host physical memory that has been consumed - usage - - - - Memory - mem - - - - Percentage - percent - - maximum - absolute - 4 - 4 - - - 27 - - - Memory reservation consumed by powered-on virtual machines - reservedCapacity - - - - Memory - mem - - - - Megabyte - megaBytes - - average - absolute - 2 - 3 - - - 28 - - - Amount of host physical memory or physical memory that is mapped for a virtual machine or a host - granted - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 29 - - - Amount of host physical memory or physical memory that is mapped for a virtual machine or a host - granted - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 30 - - - Amount of host physical memory or physical memory that is mapped for a virtual machine or a host - granted - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 31 - - - Amount of host physical memory or physical memory that is mapped for a virtual machine or a host - granted - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 32 - - - Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi - active - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 33 - - - Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi - active - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 34 - - - Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi - active - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 35 - - - Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi - active - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 36 - - - Amount of guest physical memory that is shared within a single virtual machine or across virtual machines - shared - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 37 - - - Amount of guest physical memory that is shared within a single virtual machine or across virtual machines - shared - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 38 - - - Amount of guest physical memory that is shared within a single virtual machine or across virtual machines - shared - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 39 - - - Amount of guest physical memory that is shared within a single virtual machine or across virtual machines - shared - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 40 - - - Guest physical memory pages whose content is 0x00 - zero - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 41 - - - Guest physical memory pages whose content is 0x00 - zero - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 42 - - - Guest physical memory pages whose content is 0x00 - zero - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 43 - - - Guest physical memory pages whose content is 0x00 - zero - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 44 - - - Amount by which reservation can be raised - unreserved - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 45 - - - Amount by which reservation can be raised - unreserved - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 46 - - - Amount by which reservation can be raised - unreserved - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 47 - - - Amount by which reservation can be raised - unreserved - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 48 - - - Swap storage space consumed - swapused - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 49 - - - Swap storage space consumed - swapused - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 50 - - - Swap storage space consumed - swapused - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 51 - - - Swap storage space consumed - swapused - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 52 - - - swapunreserved - swapunreserved - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 53 - - - swapunreserved - swapunreserved - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 54 - - - swapunreserved - swapunreserved - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 55 - - - swapunreserved - swapunreserved - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 56 - - - Amount of host physical memory that backs shared guest physical memory (Shared) - sharedcommon - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 57 - - - Amount of host physical memory that backs shared guest physical memory (Shared) - sharedcommon - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 58 - - - Amount of host physical memory that backs shared guest physical memory (Shared) - sharedcommon - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 59 - - - Amount of host physical memory that backs shared guest physical memory (Shared) - sharedcommon - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 60 - - - Virtual address space of ESXi that is dedicated to its heap - heap - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 61 - - - Virtual address space of ESXi that is dedicated to its heap - heap - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 62 - - - Virtual address space of ESXi that is dedicated to its heap - heap - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 63 - - - Virtual address space of ESXi that is dedicated to its heap - heap - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 64 - - - Free address space in the heap of ESXi. This is less than or equal to Heap - heapfree - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 65 - - - Free address space in the heap of ESXi. This is less than or equal to Heap - heapfree - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 66 - - - Free address space in the heap of ESXi. This is less than or equal to Heap - heapfree - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 67 - - - Free address space in the heap of ESXi. This is less than or equal to Heap - heapfree - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 68 - - - Current memory availability state of ESXi. Possible values are high, clear, soft, hard, low. The state value determines the techniques used for memory reclamation from virtual machines - state - - - - Memory - mem - - - - Number - number - - latest - absolute - 2 - 3 - - - 69 - - - Amount of guest physical memory that is swapped out to the swap space - swapped - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 70 - - - Amount of guest physical memory that is swapped out to the swap space - swapped - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 71 - - - Amount of guest physical memory that is swapped out to the swap space - swapped - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 72 - - - Amount of guest physical memory that is swapped out to the swap space - swapped - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 73 - - - Amount of memory that ESXi needs to reclaim by swapping - swaptarget - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 74 - - - Amount of memory that ESXi needs to reclaim by swapping - swaptarget - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 75 - - - Amount of memory that ESXi needs to reclaim by swapping - swaptarget - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 76 - - - Amount of memory that ESXi needs to reclaim by swapping - swaptarget - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 77 - - - swapIn - swapIn - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 78 - - - swapIn - swapIn - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 79 - - - swapIn - swapIn - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 80 - - - swapIn - swapIn - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 81 - - - swapOut - swapOut - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 82 - - - swapOut - swapOut - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 83 - - - swapOut - swapOut - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 84 - - - swapOut - swapOut - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 85 - - - Rate at which guest physical memory is swapped in from the swap space - swapinRate - - - - Memory - mem - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 1 - 3 - - - 86 - - - Rate at which guest physical memory is swapped out to the swap space - swapoutRate - - - - Memory - mem - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 1 - 3 - - - 87 - - - Amount of memory that is swapped out for the Service Console - swapOut - - - - Management agent - managementAgent - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 88 - - - Amount of memory that is swapped in for the Service Console - swapIn - - - - Management agent - managementAgent - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 89 - - - Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest - vmmemctl - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 90 - - - Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest - vmmemctl - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 1 - 3 - - - 91 - - - Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest - vmmemctl - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 92 - - - Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest - vmmemctl - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 93 - - - Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi - vmmemctltarget - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 94 - - - Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi - vmmemctltarget - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 95 - - - Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi - vmmemctltarget - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 96 - - - Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi - vmmemctltarget - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 97 - - - Amount of host physical memory consumed for backing up guest physical memory pages - consumed - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 98 - - - Amount of host physical memory consumed for backing up guest physical memory pages - consumed - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 1 - 3 - - - 99 - - - Amount of host physical memory consumed for backing up guest physical memory pages - consumed - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 100 - - - Amount of host physical memory consumed for backing up guest physical memory pages - consumed - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 101 - - - Host physical memory consumed by ESXi data structures for running the virtual machines - overhead - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 102 - - - Host physical memory consumed by ESXi data structures for running the virtual machines - overhead - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 1 - 1 - - - 103 - - - Host physical memory consumed by ESXi data structures for running the virtual machines - overhead - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 104 - - - Host physical memory consumed by ESXi data structures for running the virtual machines - overhead - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 105 - - - Guest physical memory pages that have undergone memory compression - compressed - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 106 - - - Rate of guest physical memory page compression by ESXi - compressionRate - - - - Memory - mem - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 107 - - - Rate of guest physical memory decompression - decompressionRate - - - - Memory - mem - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 108 - - - Total amount of memory available to the host - capacity.provisioned - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 109 - - - Amount of host physical memory the VM is entitled to, as determined by the ESXi scheduler - capacity.entitlement - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 110 - - - Amount of physical memory available for use by virtual machines on this host - capacity.usable - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 111 - - - Amount of physical memory actively used - capacity.usage - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 112 - - - Percentage of time VMs are waiting to access swapped, compressed or ballooned memory - capacity.contention - - - - Memory - mem - - - - Percentage - percent - - average - rate - 4 - 4 - - - 113 - - - vm - capacity.usage.vm - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 114 - - - vmOvrhd - capacity.usage.vmOvrhd - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 115 - - - vmkOvrhd - capacity.usage.vmkOvrhd - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 116 - - - userworld - capacity.usage.userworld - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 117 - - - vm - reservedCapacity.vm - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 118 - - - vmOvhd - reservedCapacity.vmOvhd - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 119 - - - vmkOvrhd - reservedCapacity.vmkOvrhd - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 120 - - - userworld - reservedCapacity.userworld - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 121 - - - Percent of memory that has been reserved either through VMkernel use, by userworlds or due to VM memory reservations - reservedCapacityPct - - - - Memory - mem - - - - Percentage - percent - - average - absolute - 4 - 4 - - - 122 - - - Amount of physical memory consumed by VMs on this host - consumed.vms - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 123 - - - Amount of physical memory consumed by userworlds on this host - consumed.userworlds - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 4 - - - 124 - - - Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval. - usage - - - - Disk - disk - - - - Kilobytes per second - kiloBytesPerSecond - - none - rate - 4 - 4 - - - 125 - - - Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval. - usage - - - - Disk - disk - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 1 - 3 - - - 126 - - - Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval. - usage - - - - Disk - disk - - - - Kilobytes per second - kiloBytesPerSecond - - minimum - rate - 4 - 4 - - - 127 - - - Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval. - usage - - - - Disk - disk - - - - Kilobytes per second - kiloBytesPerSecond - - maximum - rate - 4 - 4 - - - 128 - - - Number of disk reads during the collection interval - numberRead - - - - Disk - disk - - - - Number - number - - summation - delta - 3 - 3 - - - 129 - - - Number of disk writes during the collection interval - numberWrite - - - - Disk - disk - - - - Number - number - - summation - delta - 3 - 3 - - - 130 - - - Average number of kilobytes read from the disk each second during the collection interval - read - - - - Disk - disk - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 131 - - - Average number of kilobytes written to disk each second during the collection interval - write - - - - Disk - disk - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 132 - - - Average amount of time taken during the collection interval to process a SCSI command issued by the guest OS to the virtual machine - totalLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 3 - 3 - - - 133 - - - Highest latency value across all disks used by the host - maxTotalLatency - - - - Disk - disk - - - - Millisecond - millisecond - - latest - absolute - 1 - 3 - - - 134 - - - Number of SCSI commands aborted during the collection interval - commandsAborted - - - - Disk - disk - - - - Number - number - - summation - delta - 2 - 3 - - - 135 - - - Number of SCSI-bus reset commands issued during the collection interval - busResets - - - - Disk - disk - - - - Number - number - - summation - delta - 2 - 3 - - - 136 - - - Average number of disk reads per second during the collection interval - numberReadAveraged - - - - Disk - disk - - - - Number - number - - average - rate - 1 - 3 - - - 137 - - - Average number of disk writes per second during the collection interval - numberWriteAveraged - - - - Disk - disk - - - - Number - number - - average - rate - 1 - 3 - - - 138 - - - Aggregated disk I/O rate, including the rates for all virtual machines running on the host during the collection interval - throughput.usage - - - - Disk - disk - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 139 - - - Average amount of time for an I/O operation to complete successfully - throughput.contention - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 4 - 4 - - - 140 - - - Number of SCSI reservation conflicts for the LUN during the collection interval - scsiReservationConflicts - - - - Disk - disk - - - - Number - number - - summation - delta - 2 - 2 - - - 141 - - - Number of SCSI reservation conflicts for the LUN as a percent of total commands during the collection interval - scsiReservationCnflctsPct - - - - Disk - disk - - - - Percentage - percent - - average - absolute - 4 - 4 - - - 142 - - - Network utilization (combined transmit-rates and receive-rates) during the interval - usage - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - none - rate - 4 - 4 - - - 143 - - - Network utilization (combined transmit-rates and receive-rates) during the interval - usage - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 1 - 3 - - - 144 - - - Network utilization (combined transmit-rates and receive-rates) during the interval - usage - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - minimum - rate - 4 - 4 - - - 145 - - - Network utilization (combined transmit-rates and receive-rates) during the interval - usage - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - maximum - rate - 4 - 4 - - - 146 - - - Number of packets received during the interval - packetsRx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 147 - - - Number of packets transmitted during the interval - packetsTx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 148 - - - Average rate at which data was received during the interval - received - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 149 - - - Average rate at which data was transmitted during the interval - transmitted - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 150 - - - The maximum network bandwidth for the host - throughput.provisioned - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - absolute - 4 - 4 - - - 151 - - - The current available network bandwidth for the host - throughput.usable - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - absolute - 4 - 4 - - - 152 - - - The current network bandwidth usage for the host - throughput.usage - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 153 - - - The aggregate network droppped packets for the host - throughput.contention - - - - Network - net - - - - Number - number - - summation - delta - 4 - 4 - - - 154 - - - Average rate of packets received and transmitted per second - throughput.packetsPerSec - - - - Network - net - - - - Number - number - - average - rate - 4 - 4 - - - 155 - - - Total time elapsed, in seconds, since last system startup - uptime - - - - System - sys - - - - Second - second - - latest - absolute - 1 - 3 - - - 156 - - - Number of heartbeats issued per virtual machine during the interval - heartbeat - - - - System - sys - - - - Number - number - - summation - delta - 1 - 3 - - - 157 - - - Current power usage - power - - - - Power - power - - - - Watt - watt - - average - rate - 2 - 3 - - - 158 - - - Maximum allowed power usage - powerCap - - - - Power - power - - - - Watt - watt - - average - absolute - 3 - 3 - - - 159 - - - Total energy used since last stats reset - energy - - - - Power - power - - - - Joule - joule - - summation - delta - 3 - 3 - - - 160 - - - Current power usage as a percentage of maximum allowed power - capacity.usagePct - - - - Power - power - - - - Percentage - percent - - average - absolute - 4 - 4 - - - 161 - - - Average number of commands issued per second by the storage adapter during the collection interval - commandsAveraged - - - - Storage adapter - storageAdapter - - - - Number - number - - average - rate - 2 - 2 - - - 162 - - - Average number of read commands issued per second by the storage adapter during the collection interval - numberReadAveraged - - - - Storage adapter - storageAdapter - - - - Number - number - - average - rate - 2 - 2 - - - 163 - - - Average number of write commands issued per second by the storage adapter during the collection interval - numberWriteAveraged - - - - Storage adapter - storageAdapter - - - - Number - number - - average - rate - 2 - 2 - - - 164 - - - Rate of reading data by the storage adapter - read - - - - Storage adapter - storageAdapter - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 2 - - - 165 - - - Rate of writing data by the storage adapter - write - - - - Storage adapter - storageAdapter - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 2 - - - 166 - - - The average time a read by the storage adapter takes - totalReadLatency - - - - Storage adapter - storageAdapter - - - - Millisecond - millisecond - - average - absolute - 2 - 2 - - - 167 - - - The average time a write by the storage adapter takes - totalWriteLatency - - - - Storage adapter - storageAdapter - - - - Millisecond - millisecond - - average - absolute - 2 - 2 - - - 168 - - - Highest latency value across all storage adapters used by the host - maxTotalLatency - - - - Storage adapter - storageAdapter - - - - Millisecond - millisecond - - latest - absolute - 3 - 3 - - - 169 - - - Average amount of time for an I/O operation to complete successfully - throughput.cont - - - - Storage adapter - storageAdapter - - - - Millisecond - millisecond - - average - absolute - 4 - 4 - - - 170 - - - The percent of I/Os that have been issued but have not yet completed - OIOsPct - - - - Storage adapter - storageAdapter - - - - Percentage - percent - - average - absolute - 4 - 4 - - - 171 - - - Average number of read commands issued per second to the virtual disk during the collection interval - numberReadAveraged - - - - Virtual disk - virtualDisk - - - - Number - number - - average - rate - 1 - 3 - - - 172 - - - Average number of write commands issued per second to the virtual disk during the collection interval - numberWriteAveraged - - - - Virtual disk - virtualDisk - - - - Number - number - - average - rate - 1 - 3 - - - 173 - - - Rate of reading data from the virtual disk - read - - - - Virtual disk - virtualDisk - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 2 - - - 174 - - - Rate of writing data to the virtual disk - write - - - - Virtual disk - virtualDisk - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 2 - - - 175 - - - The average time a read from the virtual disk takes - totalReadLatency - - - - Virtual disk - virtualDisk - - - - Millisecond - millisecond - - average - absolute - 1 - 3 - - - 176 - - - The average time a write to the virtual disk takes - totalWriteLatency - - - - Virtual disk - virtualDisk - - - - Millisecond - millisecond - - average - absolute - 1 - 3 - - - 177 - - - Average amount of time for an I/O operation to complete successfully - throughput.cont - - - - Virtual disk - virtualDisk - - - - Millisecond - millisecond - - average - absolute - 4 - 4 - - - 178 - - - Average number of read commands issued per second to the datastore during the collection interval - numberReadAveraged - - - - Datastore - datastore - - - - Number - number - - average - rate - 1 - 3 - - - 179 - - - Average number of write commands issued per second to the datastore during the collection interval - numberWriteAveraged - - - - Datastore - datastore - - - - Number - number - - average - rate - 1 - 3 - - - 180 - - - Rate of reading data from the datastore - read - - - - Datastore - datastore - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 2 - - - 181 - - - Rate of writing data to the datastore - write - - - - Datastore - datastore - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 2 - - - 182 - - - The average time a read from the datastore takes - totalReadLatency - - - - Datastore - datastore - - - - Millisecond - millisecond - - average - absolute - 1 - 3 - - - 183 - - - The average time a write to the datastore takes - totalWriteLatency - - - - Datastore - datastore - - - - Millisecond - millisecond - - average - absolute - 1 - 3 - - - 184 - - - Highest latency value across all datastores used by the host - maxTotalLatency - - - - Datastore - datastore - - - - Millisecond - millisecond - - latest - absolute - 3 - 3 - - - 185 - - - Storage I/O Control aggregated IOPS - datastoreIops - - - - Datastore - datastore - - - - Number - number - - average - absolute - 1 - 3 - - - 186 - - - Storage I/O Control size-normalized I/O latency - sizeNormalizedDatastoreLatency - - - - Datastore - datastore - - - - Microsecond - microsecond - - average - absolute - 1 - 3 - - - 187 - - - usage - throughput.usage - - - - Datastore - datastore - - - - Kilobytes per second - kiloBytesPerSecond - - average - absolute - 4 - 4 - - - 188 - - - contention - throughput.contention - - - - Datastore - datastore - - - - Millisecond - millisecond - - average - absolute - 4 - 4 - - - 189 - - - busResets - busResets - - - - Datastore - datastore - - - - Number - number - - summation - delta - 2 - 2 - - - 190 - - - commandsAborted - commandsAborted - - - - Datastore - datastore - - - - Number - number - - summation - delta - 2 - 2 - - - 191 - - - Percentage of time Storage I/O Control actively controlled datastore latency - siocActiveTimePercentage - - - - Datastore - datastore - - - - Percentage - percent - - average - absolute - 1 - 3 - - - 192 - - - Average amount of time for an I/O operation to complete successfully - throughput.cont - - - - Storage path - storagePath - - - - Millisecond - millisecond - - average - absolute - 4 - 4 - - - 193 - - - Highest latency value across all storage paths used by the host - maxTotalLatency - - - - Storage path - storagePath - - - - Millisecond - millisecond - - latest - absolute - 3 - 3 - - - 194 - - - Virtual disk I/O rate - throughput.usage - - - - Virtual disk - virtualDisk - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 195 - - - Number of terminations to a virtual disk - commandsAborted - - - - Virtual disk - virtualDisk - - - - Number - number - - summation - delta - 2 - 4 - - - 196 - - - Number of resets to a virtual disk - busResets - - - - Virtual disk - virtualDisk - - - - Number - number - - summation - delta - 2 - 4 - - - 197 - - - The number of I/Os that have been issued but have not yet completed - outstandingIOs - - - - Storage adapter - storageAdapter - - - - Number - number - - average - absolute - 2 - 2 - - - 198 - - - The current number of I/Os that are waiting to be issued - queued - - - - Storage adapter - storageAdapter - - - - Number - number - - average - absolute - 2 - 2 - - - 199 - - - The maximum number of I/Os that can be outstanding at a given time - queueDepth - - - - Storage adapter - storageAdapter - - - - Number - number - - average - absolute - 2 - 2 - - - 200 - - - Average amount of time spent in the VMkernel queue, per SCSI command, during the collection interval - queueLatency - - - - Storage adapter - storageAdapter - - - - Millisecond - millisecond - - average - absolute - 2 - 2 - - - 201 - - - The storage adapter's I/O rate - throughput.usag - - - - Storage adapter - storageAdapter - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 202 - - - Number of SCSI-bus reset commands issued during the collection interval - busResets - - - - Storage path - storagePath - - - - Number - number - - summation - delta - 2 - 3 - - - 203 - - - Number of SCSI commands terminated during the collection interval - commandsAborted - - - - Storage path - storagePath - - - - Number - number - - summation - delta - 2 - 3 - - - 204 - - - Storage path I/O rate - throughput.usage - - - - Storage path - storagePath - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 205 - - - Average pNic I/O rate for VMs - throughput.usage.vm - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 206 - - - Average pNic I/O rate for NFS - throughput.usage.nfs - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 207 - - - Average pNic I/O rate for vMotion - throughput.usage.vmotion - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 208 - - - Average pNic I/O rate for FT - throughput.usage.ft - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 209 - - - Average pNic I/O rate for iSCSI - throughput.usage.iscsi - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 210 - - - Average pNic I/O rate for HBR - throughput.usage.hbr - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 211 - - - Current maximum allowed power usage - capacity.usable - - - - Power - power - - - - Watt - watt - - average - absolute - 4 - 4 - - - 212 - - - Current power usage - capacity.usage - - - - Power - power - - - - Watt - watt - - average - absolute - 4 - 4 - - - 213 - - - Amount of CPU resources allocated to the virtual machine or resource pool, based on the total cluster capacity and the resource configuration of the resource hierarchy - cpuentitlement - - - - CPU - cpu - - - - Megahertz - megaHertz - - latest - absolute - 2 - 3 - - - 214 - - - Memory allocation as calculated by the VMkernel scheduler based on current estimated demand and reservation, limit, and shares policies set for all virtual machines and resource pools in the host or cluster - mementitlement - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 2 - 3 - - - 215 - - - DRS score of the virtual machine - vmDrsScore - - - - Cluster services - clusterServices - - - - Percentage - percent - - latest - absolute - 1 - 1 - - - 216 - - - Fairness of distributed CPU resource allocation - cpufairness - - - - Cluster services - clusterServices - - - - Number - number - - latest - absolute - 1 - 3 - - - 217 - - - Aggregate available memory resources of all the hosts within a cluster - memfairness - - - - Cluster services - clusterServices - - - - Number - number - - latest - absolute - 1 - 3 - - - 218 - - - The rate of transmitted packets for this VDS - throughput.pktsTx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 219 - - - The rate of transmitted Multicast packets for this VDS - throughput.pktsTxMulticast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 220 - - - The rate of transmitted Broadcast packets for this VDS - throughput.pktsTxBroadcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 221 - - - The rate of received packets for this vDS - throughput.pktsRx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 222 - - - The rate of received Multicast packets for this VDS - throughput.pktsRxMulticast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 223 - - - The rate of received Broadcast packets for this VDS - throughput.pktsRxBroadcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 224 - - - Count of dropped transmitted packets for this VDS - throughput.droppedTx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 225 - - - Count of dropped received packets for this VDS - throughput.droppedRx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 226 - - - The rate of transmitted packets for this DVPort - throughput.vds.pktsTx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 227 - - - The rate of transmitted multicast packets for this DVPort - throughput.vds.pktsTxMcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 228 - - - The rate of transmitted broadcast packets for this DVPort - throughput.vds.pktsTxBcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 229 - - - The rate of received packets for this DVPort - throughput.vds.pktsRx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 230 - - - The rate of received multicast packets for this DVPort - throughput.vds.pktsRxMcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 231 - - - The rate of received broadcast packets for this DVPort - throughput.vds.pktsRxBcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 232 - - - Count of dropped transmitted packets for this DVPort - throughput.vds.droppedTx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 233 - - - Count of dropped received packets for this DVPort - throughput.vds.droppedRx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 234 - - - The rate of transmitted packets for this LAG - throughput.vds.lagTx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 235 - - - The rate of transmitted Multicast packets for this LAG - throughput.vds.lagTxMcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 236 - - - The rate of transmitted Broadcast packets for this LAG - throughput.vds.lagTxBcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 237 - - - The rate of received packets for this LAG - throughput.vds.lagRx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 238 - - - The rate of received multicast packets for this LAG - throughput.vds.lagRxMcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 239 - - - The rate of received Broadcast packets for this LAG - throughput.vds.lagRxBcast - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 240 - - - Count of dropped transmitted packets for this LAG - throughput.vds.lagDropTx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 241 - - - Count of dropped received packets for this LAG - throughput.vds.lagDropRx - - - - Network - net - - - - Number - number - - average - absolute - 3 - 3 - - - 242 - - - Number of virtual machine power on operations - numPoweron - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 243 - - - Number of virtual machine power off operations - numPoweroff - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 244 - - - Number of virtual machine suspend operations - numSuspend - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 245 - - - Number of virtual machine reset operations - numReset - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 246 - - - Number of virtual machine guest reboot operations - numRebootGuest - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 247 - - - Number of virtual machine standby guest operations - numStandbyGuest - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 248 - - - Number of virtual machine guest shutdown operations - numShutdownGuest - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 249 - - - Number of virtual machine create operations - numCreate - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 250 - - - Number of virtual machine delete operations - numDestroy - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 251 - - - Number of virtual machine register operations - numRegister - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 252 - - - Number of virtual machine unregister operations - numUnregister - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 253 - - - Number of virtual machine reconfigure operations - numReconfigure - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 254 - - - Number of virtual machine clone operations - numClone - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 255 - - - Number of virtual machine template deploy operations - numDeploy - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 256 - - - Number of host change operations for powered-off and suspended VMs - numChangeHost - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 257 - - - Number of datastore change operations for powered-off and suspended virtual machines - numChangeDS - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 258 - - - Number of host and datastore change operations for powered-off and suspended virtual machines - numChangeHostDS - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 259 - - - Number of migrations with vMotion (host change operations for powered-on VMs) - numVMotion - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 260 - - - Number of migrations with Storage vMotion (datastore change operations for powered-on VMs) - numSVMotion - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 261 - - - Number of host and datastore change operations for powered-on and suspended virtual machines - numXVMotion - - - - Virtual machine operations - vmop - - - - Number - number - - latest - absolute - 1 - 3 - - - 262 - - - Total available CPU resources of all hosts within a cluster - effectivecpu - - - - Cluster services - clusterServices - - - - Megahertz - megaHertz - - average - rate - 1 - 3 - - - 263 - - - Total amount of machine memory of all hosts in the cluster that is available for use for virtual machine memory and overhead memory - effectivemem - - - - Cluster services - clusterServices - - - - Megabyte - megaBytes - - average - absolute - 1 - 3 - - - 264 - - - Total amount of CPU resources of all hosts in the cluster - totalmhz - - - - CPU - cpu - - - - Megahertz - megaHertz - - average - rate - 1 - 3 - - - 265 - - - Total amount of host physical memory of all hosts in the cluster that is available for virtual machine memory (physical memory for use by the guest OS) and virtual machine overhead memory - totalmb - - - - Memory - mem - - - - Megabyte - megaBytes - - average - absolute - 1 - 3 - - - 266 - - - DRS score of the cluster - clusterDrsScore - - - - Cluster services - clusterServices - - - - Percentage - percent - - latest - absolute - 1 - 1 - - - 267 - - - vSphere HA number of failures that can be tolerated - failover - - - - Cluster services - clusterServices - - - - Number - number - - latest - absolute - 1 - 3 - - - 268 - - - Amount of space actually used by the virtual machine or the datastore - used - - - - Disk - disk - - - - Kilobyte - kiloBytes - - latest - absolute - 1 - 1 - - - 269 - - - Amount of storage set aside for use by a datastore or a virtual machine - provisioned - - - - Disk - disk - - - - Kilobyte - kiloBytes - - latest - absolute - 1 - 1 - - - 270 - - - Configured size of the datastore - capacity - - - - Disk - disk - - - - Kilobyte - kiloBytes - - latest - absolute - 1 - 3 - - - 271 - - - Amount of space associated exclusively with a virtual machine - unshared - - - - Disk - disk - - - - Kilobyte - kiloBytes - - latest - absolute - 1 - 1 - - - 272 - - - Storage overhead of a virtual machine or a datastore due to delta disk backings - deltaused - - - - Disk - disk - - - - Kilobyte - kiloBytes - - latest - absolute - 2 - 3 - - - 273 - - - provisioned - capacity.provisioned - - - - Disk - disk - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 274 - - - usage - capacity.usage - - - - Disk - disk - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 275 - - - contention - capacity.contention - - - - Disk - disk - - - - Percentage - percent - - average - absolute - 4 - 4 - - - 276 - - - The latency of an activation operation in vCenter Server - activationlatencystats - - - - vCenter debugging information - vcDebugInfo - - - - Millisecond - millisecond - - maximum - absolute - 4 - 4 - - - 277 - - - The latency of an activation operation in vCenter Server - activationlatencystats - - - - vCenter debugging information - vcDebugInfo - - - - Millisecond - millisecond - - minimum - absolute - 4 - 4 - - - 278 - - - The latency of an activation operation in vCenter Server - activationlatencystats - - - - vCenter debugging information - vcDebugInfo - - - - Millisecond - millisecond - - summation - absolute - 1 - 1 - - - 279 - - - Activation operations in vCenter Server - activationstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 280 - - - Activation operations in vCenter Server - activationstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 281 - - - Activation operations in vCenter Server - activationstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 282 - - - buffersz - buffersz - - - - vCenter resource usage information - vcResources - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 283 - - - cachesz - cachesz - - - - vCenter resource usage information - vcResources - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 284 - - - Number of context switches per second on the system where vCenter Server is running - ctxswitchesrate - - - - vCenter resource usage information - vcResources - - - - Number - number - - average - rate - 1 - 1 - - - 285 - - - diskreadsectorrate - diskreadsectorrate - - - - vCenter resource usage information - vcResources - - - - Number - number - - average - rate - 4 - 4 - - - 286 - - - Number of disk reads per second on the system where vCenter Server is running - diskreadsrate - - - - vCenter resource usage information - vcResources - - - - Number - number - - average - rate - 1 - 1 - - - 287 - - - diskwritesectorrate - diskwritesectorrate - - - - vCenter resource usage information - vcResources - - - - Number - number - - average - rate - 4 - 4 - - - 288 - - - Number of disk writes per second on the system where vCenter Server is running - diskwritesrate - - - - vCenter resource usage information - vcResources - - - - Number - number - - average - rate - 1 - 1 - - - 289 - - - The latency of a host sync operation in vCenter Server - hostsynclatencystats - - - - vCenter debugging information - vcDebugInfo - - - - Millisecond - millisecond - - maximum - absolute - 4 - 4 - - - 290 - - - The latency of a host sync operation in vCenter Server - hostsynclatencystats - - - - vCenter debugging information - vcDebugInfo - - - - Millisecond - millisecond - - minimum - absolute - 4 - 4 - - - 291 - - - The latency of a host sync operation in vCenter Server - hostsynclatencystats - - - - vCenter debugging information - vcDebugInfo - - - - Millisecond - millisecond - - summation - absolute - 1 - 1 - - - 292 - - - The number of host sync operations in vCenter Server - hostsyncstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 293 - - - The number of host sync operations in vCenter Server - hostsyncstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 294 - - - The number of host sync operations in vCenter Server - hostsyncstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 295 - - - vCenter Server inventory statistics - inventorystats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 296 - - - vCenter Server inventory statistics - inventorystats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 297 - - - vCenter Server inventory statistics - inventorystats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 298 - - - vCenter Server locking statistics - lockstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 299 - - - vCenter Server locking statistics - lockstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 300 - - - vCenter Server locking statistics - lockstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 301 - - - vCenter Server LRO statistics - lrostats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 302 - - - vCenter Server LRO statistics - lrostats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 303 - - - vCenter Server LRO statistics - lrostats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 304 - - - Miscellaneous statistics - miscstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 305 - - - Miscellaneous statistics - miscstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 306 - - - Miscellaneous statistics - miscstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 307 - - - Managed object reference counts in vCenter Server - morefregstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 308 - - - Managed object reference counts in vCenter Server - morefregstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 309 - - - Managed object reference counts in vCenter Server - morefregstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 310 - - - Rate of the number of total packets received per second on the system where vCenter Server is running - packetrecvrate - - - - vCenter resource usage information - vcResources - - - - Number - number - - average - rate - 1 - 1 - - - 311 - - - Number of total packets sent per second on the system where vCenter Server is running - packetsentrate - - - - vCenter resource usage information - vcResources - - - - Number - number - - average - rate - 1 - 1 - - - 312 - - - Total system CPU used on the system where vCenter Server in running - systemcpuusage - - - - vCenter resource usage information - vcResources - - - - Percentage - percent - - average - rate - 1 - 1 - - - 313 - - - Number of page faults per second on the system where vCenter Server is running - pagefaultrate - - - - vCenter resource usage information - vcResources - - - - Number - number - - average - rate - 1 - 1 - - - 314 - - - Physical memory used by vCenter - physicalmemusage - - - - vCenter resource usage information - vcResources - - - - Kilobyte - kiloBytes - - average - absolute - 1 - 1 - - - 315 - - - CPU used by vCenter Server in privileged mode - priviledgedcpuusage - - - - vCenter resource usage information - vcResources - - - - Percentage - percent - - average - rate - 1 - 1 - - - 316 - - - Object counts in vCenter Server - scoreboard - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 317 - - - Object counts in vCenter Server - scoreboard - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 318 - - - Object counts in vCenter Server - scoreboard - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 3 - 3 - - - 319 - - - The statistics of client sessions connected to vCenter Server - sessionstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 320 - - - The statistics of client sessions connected to vCenter Server - sessionstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 321 - - - The statistics of client sessions connected to vCenter Server - sessionstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 322 - - - Number of systems calls made per second on the system where vCenter Server is running - syscallsrate - - - - vCenter resource usage information - vcResources - - - - Number - number - - average - rate - 1 - 1 - - - 323 - - - The statistics of vCenter Server as a running system such as thread statistics and heap statistics - systemstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 324 - - - The statistics of vCenter Server as a running system such as thread statistics and heap statistics - systemstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 325 - - - The statistics of vCenter Server as a running system such as thread statistics and heap statistics - systemstats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 326 - - - CPU used by vCenter Server in user mode - usercpuusage - - - - vCenter resource usage information - vcResources - - - - Percentage - percent - - average - rate - 1 - 1 - - - 327 - - - vCenter service statistics such as events, alarms, and tasks - vcservicestats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - maximum - absolute - 4 - 4 - - - 328 - - - vCenter service statistics such as events, alarms, and tasks - vcservicestats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - minimum - absolute - 4 - 4 - - - 329 - - - vCenter service statistics such as events, alarms, and tasks - vcservicestats - - - - vCenter debugging information - vcDebugInfo - - - - Number - number - - summation - absolute - 1 - 1 - - - 330 - - - Virtual memory used by vCenter Server - virtualmemusage - - - - vCenter resource usage information - vcResources - - - - Kilobyte - kiloBytes - - average - absolute - 1 - 1 - - - 331 - - - Average number of outstanding read requests to the virtual disk during the collection interval - readOIO - - - - Virtual disk - virtualDisk - - - - Number - number - - latest - absolute - 2 - 2 - - - 332 - - - Average number of outstanding write requests to the virtual disk during the collection interval - writeOIO - - - - Virtual disk - virtualDisk - - - - Number - number - - latest - absolute - 2 - 2 - - - 333 - - - Storage DRS virtual disk metric for the read workload model - readLoadMetric - - - - Virtual disk - virtualDisk - - - - Number - number - - latest - absolute - 2 - 2 - - - 334 - - - Storage DRS virtual disk metric for the write workload model - writeLoadMetric - - - - Virtual disk - virtualDisk - - - - Number - number - - latest - absolute - 2 - 2 - - - 335 - - - CPU active average over 1 minute - actav1 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 336 - - - Storage DRS datastore bytes read - datastoreReadBytes - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 2 - 2 - - - 337 - - - Storage DRS datastore bytes written - datastoreWriteBytes - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 2 - 2 - - - 338 - - - Storage DRS datastore read I/O rate - datastoreReadIops - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 1 - 3 - - - 339 - - - Storage DRS datastore write I/O rate - datastoreWriteIops - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 1 - 3 - - - 340 - - - Storage DRS datastore outstanding read requests - datastoreReadOIO - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 1 - 3 - - - 341 - - - Storage DRS datastore outstanding write requests - datastoreWriteOIO - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 1 - 3 - - - 342 - - - Storage DRS datastore normalized read latency - datastoreNormalReadLatency - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 2 - 2 - - - 343 - - - Storage DRS datastore normalized write latency - datastoreNormalWriteLatency - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 2 - 2 - - - 344 - - - Storage DRS datastore metric for read workload model - datastoreReadLoadMetric - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 4 - 4 - - - 345 - - - Storage DRS datastore metric for write workload model - datastoreWriteLoadMetric - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 4 - 4 - - - 346 - - - The average datastore latency as seen by virtual machines - datastoreVMObservedLatency - - - - Datastore - datastore - - - - Microsecond - microsecond - - latest - absolute - 1 - 3 - - - 401 - - - Number of SCSI reservation conflicts for the LUN as a percent of total commands during the collection interval - scsiReservationCnflctsPct - - - - Disk - disk - - - - Percentage - percent - - average - rate - 4 - 4 - - - 402 - - - The number of I/Os that have been issued but have not yet completed - outstandingIOs - - - - Storage adapter - storageAdapter - - - - Number - number - - latest - absolute - 4 - 4 - - - 403 - - - The current number of I/Os that are waiting to be issued - queued - - - - Storage adapter - storageAdapter - - - - Number - number - - latest - absolute - 4 - 4 - - - 404 - - - The maximum number of I/Os that can be outstanding at a given time - queueDepth - - - - Storage adapter - storageAdapter - - - - Number - number - - latest - absolute - 4 - 4 - - - 405 - - - CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading) - utilization - - - - CPU - cpu - - - - Percentage - percent - - average - rate - 2 - 3 - - - 406 - - - The number of virtual processors provisioned to the entity - corecount.provisioned - - - - CPU - cpu - - - - Number - number - - latest - absolute - 4 - 4 - - - 407 - - - The amount of L3 cache the VM uses - cache.l3.occupancy - - - - CPU - cpu - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 408 - - - The number of virtual processors running on the host - corecount.usage - - - - CPU - cpu - - - - Number - number - - latest - absolute - 4 - 4 - - - 409 - - - CPU load average over the past 1 minute, sampled on every 6 seconds - load.avg1min - - - - CPU - cpu - - - - Percentage - percent - - latest - absolute - 4 - 4 - - - 410 - - - CPU load average over the past 5 minutes, sampled on every 6 seconds - load.avg5min - - - - CPU - cpu - - - - Percentage - percent - - latest - absolute - 4 - 4 - - - 411 - - - CPU load average over the past 15 minutes, sampled on every 6 seconds - load.avg15min - - - - CPU - cpu - - - - Percentage - percent - - latest - absolute - 4 - 4 - - - 412 - - - Total amount of memory available to the host - capacity.provisioned - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 413 - - - Percent of memory that has been reserved either through VMkernel use, by userworlds or due to VM memory reservations - reservedCapacityPct - - - - Memory - mem - - - - Percentage - percent - - latest - absolute - 4 - 4 - - - 414 - - - Ratio of total requested memory and the managed memory minus 1 over the past 1 minute - overcommit.avg1min - - - - Memory - mem - - - - Number - number - - latest - absolute - 4 - 4 - - - 415 - - - Ratio of total requested memory and the managed memory minus 1 over the past 5 minutes - overcommit.avg5min - - - - Memory - mem - - - - Number - number - - latest - absolute - 4 - 4 - - - 416 - - - Ratio of total requested memory and the managed memory minus 1 over the past 15 minutes - overcommit.avg15min - - - - Memory - mem - - - - Number - number - - latest - absolute - 4 - 4 - - - 417 - - - Total amount of machine memory on the ESXi host - physical.total - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 418 - - - Amount of machine memory being used by everything other than VMkernel - physical.user - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 419 - - - Amount of machine memory that is free on the ESXi host - physical.free - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 420 - - - Total amount of machine memory managed by VMkernel - kernel.managed - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 421 - - - Mininum amount of machine memory that VMkernel likes to keep free - kernel.minfree - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 422 - - - Amount of machine memory that is currently unreserved - kernel.unreserved - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 423 - - - Amount of physical memory that is being shared - pshare.shared - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 424 - - - Amount of machine memory that is common across World(s) - pshare.common - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 425 - - - Amount of machine memory saved due to page-sharing - pshare.sharedSave - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 426 - - - Current swap usage - swap.current - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 427 - - - Where ESXi expects the reclaimed memory using swapping and compression to be - swap.target - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 428 - - - Rate at which memory is swapped in by ESXi from disk - swap.readrate - - - - Memory - mem - - - - Megabytes per second - megaBytesPerSecond - - average - rate - 4 - 4 - - - 429 - - - Rate at which memory is swapped to disk by the ESXi - swap.writerate - - - - Memory - mem - - - - Megabytes per second - megaBytesPerSecond - - average - rate - 4 - 4 - - - 430 - - - Total compressed physical memory - zip.zipped - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 431 - - - Saved memory by compression - zip.saved - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 432 - - - Total amount of physical memory reclaimed using the vmmemctl modules - memctl.current - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 433 - - - Total amount of physical memory ESXi would like to reclaim using the vmmemctl modules - memctl.target - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 434 - - - Maximum amount of physical memory ESXi can reclaim using the vmmemctl modules - memctl.max - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 455 - - - CPU time spent waiting for swap-in - swapwait - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 3 - 3 - - - 456 - - - CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading) - utilization - - - - CPU - cpu - - - - Percentage - percent - - none - rate - 4 - 4 - - - 457 - - - CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading) - utilization - - - - CPU - cpu - - - - Percentage - percent - - maximum - rate - 4 - 4 - - - 458 - - - CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading) - utilization - - - - CPU - cpu - - - - Percentage - percent - - minimum - rate - 4 - 4 - - - 459 - - - CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized) - coreUtilization - - - - CPU - cpu - - - - Percentage - percent - - none - rate - 4 - 4 - - - 460 - - - CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized) - coreUtilization - - - - CPU - cpu - - - - Percentage - percent - - average - rate - 2 - 3 - - - 461 - - - CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized) - coreUtilization - - - - CPU - cpu - - - - Percentage - percent - - maximum - rate - 4 - 4 - - - 462 - - - CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized) - coreUtilization - - - - CPU - cpu - - - - Percentage - percent - - minimum - rate - 4 - 4 - - - 463 - - - Total CPU capacity reserved by and available for virtual machines - totalCapacity - - - - CPU - cpu - - - - Megahertz - megaHertz - - average - absolute - 2 - 3 - - - 464 - - - Percent of time the virtual machine is unable to run because it is contending for access to the physical CPU(s) - latency - - - - CPU - cpu - - - - Percentage - percent - - average - rate - 2 - 3 - - - 465 - - - CPU resources devoted by the ESX scheduler - entitlement - - - - CPU - cpu - - - - Megahertz - megaHertz - - latest - absolute - 2 - 3 - - - 466 - - - The amount of CPU resources a virtual machine would use if there were no CPU contention or CPU limit - demand - - - - CPU - cpu - - - - Megahertz - megaHertz - - average - absolute - 2 - 3 - - - 467 - - - Time the virtual machine is ready to run, but is unable to run due to co-scheduling constraints - costop - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 2 - 3 - - - 468 - - - Time the virtual machine is ready to run, but is not run due to maxing out its CPU limit setting - maxlimited - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 2 - 3 - - - 469 - - - Time the virtual machine was interrupted to perform system services on behalf of itself or other virtual machines - overlap - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 3 - 3 - - - 470 - - - Time the virtual machine is scheduled to run - run - - - - CPU - cpu - - - - Millisecond - millisecond - - summation - delta - 2 - 3 - - - 471 - - - CPU resource entitlement to CPU demand ratio (in percents) - demandEntitlementRatio - - - - CPU - cpu - - - - Percentage - percent - - latest - absolute - 4 - 4 - - - 472 - - - Percentage of time that the virtual machine was ready, but could not get scheduled to run on the physical CPU - readiness - - - - CPU - cpu - - - - Percentage - percent - - average - rate - 4 - 4 - - - 473 - - - Virtual CPU usage as a percentage during the interval - usage.vcpus - - - - CPU - cpu - - - - Percentage - percent - - average - rate - 4 - 4 - - - 474 - - - Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter - swapin - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 475 - - - Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter - swapin - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 476 - - - Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter - swapin - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 477 - - - Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter - swapin - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 478 - - - Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on. - swapout - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 479 - - - Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on. - swapout - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 480 - - - Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on. - swapout - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 481 - - - Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on. - swapout - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 482 - - - Amount of host physical memory consumed by VMkernel - sysUsage - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 483 - - - Amount of host physical memory consumed by VMkernel - sysUsage - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 484 - - - Amount of host physical memory consumed by VMkernel - sysUsage - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 485 - - - Amount of host physical memory consumed by VMkernel - sysUsage - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 486 - - - Amount of guest physical memory that is being actively written by guest. Activeness is estimated by ESXi - activewrite - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 487 - - - Host physical memory reserved by ESXi, for its data structures, for running the virtual machine - overheadMax - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 488 - - - Total reservation, available and consumed, for powered-on virtual machines - totalCapacity - - - - Memory - mem - - - - Megabyte - megaBytes - - average - absolute - 2 - 3 - - - 489 - - - Amount of guest physical memory pages compressed by ESXi - zipped - - - - Memory - mem - - - - Kilobyte - kiloBytes - - latest - absolute - 2 - 3 - - - 490 - - - Host physical memory, reclaimed from a virtual machine, by memory compression. This value is less than the value of 'Compressed' memory - zipSaved - - - - Memory - mem - - - - Kilobyte - kiloBytes - - latest - absolute - 2 - 3 - - - 491 - - - Percentage of time the virtual machine spent waiting to swap in or decompress guest physical memory - latency - - - - Memory - mem - - - - Percentage - percent - - average - absolute - 2 - 3 - - - 492 - - - Amount of host physical memory the virtual machine deserves, as determined by ESXi - entitlement - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 493 - - - Threshold of free host physical memory below which ESXi will begin actively reclaiming memory from virtual machines by swapping, compression and ballooning - lowfreethreshold - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 2 - 3 - - - 494 - - - Storage space consumed on the host swap cache for storing swapped guest physical memory pages - llSwapUsed - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 495 - - - Rate at which guest physical memory is swapped in from the host swap cache - llSwapInRate - - - - Memory - mem - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 496 - - - Rate at which guest physical memory is swapped out to the host swap cache - llSwapOutRate - - - - Memory - mem - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 497 - - - Estimate of the host physical memory, from Overhead consumed, that is actively read or written to by ESXi - overheadTouched - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 498 - - - Storage space consumed on the host swap cache for storing swapped guest physical memory pages - llSwapUsed - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 499 - - - Storage space consumed on the host swap cache for storing swapped guest physical memory pages - llSwapUsed - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 500 - - - Storage space consumed on the host swap cache for storing swapped guest physical memory pages - llSwapUsed - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 501 - - - Amount of guest physical memory swapped in from host cache - llSwapIn - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 502 - - - Amount of guest physical memory swapped in from host cache - llSwapIn - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 503 - - - Amount of guest physical memory swapped in from host cache - llSwapIn - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 504 - - - Amount of guest physical memory swapped in from host cache - llSwapIn - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 505 - - - Amount of guest physical memory swapped out to the host swap cache - llSwapOut - - - - Memory - mem - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 506 - - - Amount of guest physical memory swapped out to the host swap cache - llSwapOut - - - - Memory - mem - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 507 - - - Amount of guest physical memory swapped out to the host swap cache - llSwapOut - - - - Memory - mem - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 508 - - - Amount of guest physical memory swapped out to the host swap cache - llSwapOut - - - - Memory - mem - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 509 - - - Space used for holding VMFS Pointer Blocks in memory - vmfs.pbc.size - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 510 - - - Maximum size the VMFS Pointer Block Cache can grow to - vmfs.pbc.sizeMax - - - - Memory - mem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 511 - - - Amount of file blocks whose addresses are cached in the VMFS PB Cache - vmfs.pbc.workingSet - - - - Memory - mem - - - - Terabyte - teraBytes - - latest - absolute - 4 - 4 - - - 512 - - - Maximum amount of file blocks whose addresses are cached in the VMFS PB Cache - vmfs.pbc.workingSetMax - - - - Memory - mem - - - - Terabyte - teraBytes - - latest - absolute - 4 - 4 - - - 513 - - - Amount of VMFS heap used by the VMFS PB Cache - vmfs.pbc.overhead - - - - Memory - mem - - - - Kilobyte - kiloBytes - - latest - absolute - 4 - 4 - - - 514 - - - Trailing average of the ratio of capacity misses to compulsory misses for the VMFS PB Cache - vmfs.pbc.capMissRatio - - - - Memory - mem - - - - Percentage - percent - - latest - absolute - 4 - 4 - - - 515 - - - Number of SCSI commands issued during the collection interval - commands - - - - Disk - disk - - - - Number - number - - summation - delta - 2 - 3 - - - 516 - - - Average amount of time, in milliseconds, to read from the physical device - deviceReadLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 517 - - - Average amount of time, in milliseconds, spent by VMkernel to process each SCSI read command - kernelReadLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 518 - - - Average amount of time taken during the collection interval to process a SCSI read command issued from the guest OS to the virtual machine - totalReadLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 519 - - - Average amount of time spent in the VMkernel queue, per SCSI read command, during the collection interval - queueReadLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 520 - - - Average amount of time, in milliseconds, to write to the physical device - deviceWriteLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 521 - - - Average amount of time, in milliseconds, spent by VMkernel to process each SCSI write command - kernelWriteLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 522 - - - Average amount of time taken during the collection interval to process a SCSI write command issued by the guest OS to the virtual machine - totalWriteLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 523 - - - Average amount of time spent in the VMkernel queue, per SCSI write command, during the collection interval - queueWriteLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 524 - - - Average amount of time, in milliseconds, to complete a SCSI command from the physical device - deviceLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 1 - 3 - - - 525 - - - Average amount of time, in milliseconds, spent by VMkernel to process each SCSI command - kernelLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 526 - - - Average amount of time spent in the VMkernel queue, per SCSI command, during the collection interval - queueLatency - - - - Disk - disk - - - - Millisecond - millisecond - - average - absolute - 2 - 3 - - - 527 - - - Maximum queue depth - maxQueueDepth - - - - Disk - disk - - - - Number - number - - average - absolute - 1 - 3 - - - 528 - - - Average number of SCSI commands issued per second during the collection interval - commandsAveraged - - - - Disk - disk - - - - Number - number - - average - rate - 2 - 3 - - - 529 - - - Number of receives dropped - droppedRx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 530 - - - Number of transmits dropped - droppedTx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 531 - - - Average amount of data received per second - bytesRx - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 532 - - - Average amount of data transmitted per second - bytesTx - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 2 - 3 - - - 533 - - - Number of broadcast packets received during the sampling interval - broadcastRx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 534 - - - Number of broadcast packets transmitted during the sampling interval - broadcastTx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 535 - - - Number of multicast packets received during the sampling interval - multicastRx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 536 - - - Number of multicast packets transmitted during the sampling interval - multicastTx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 537 - - - Number of packets with errors received during the sampling interval - errorsRx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 538 - - - Number of packets with errors transmitted during the sampling interval - errorsTx - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 539 - - - Number of frames with unknown protocol received during the sampling interval - unknownProtos - - - - Network - net - - - - Number - number - - summation - delta - 2 - 3 - - - 540 - - - pnicBytesRx - pnicBytesRx - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 541 - - - pnicBytesTx - pnicBytesTx - - - - Network - net - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 542 - - - Number of heartbeats issued per virtual machine during the interval - heartbeat - - - - System - sys - - - - Number - number - - latest - absolute - 4 - 4 - - - 543 - - - Amount of disk space usage for each mount point - diskUsage - - - - System - sys - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 544 - - - Amount of CPU used by the Service Console and other applications during the interval - resourceCpuUsage - - - - System - sys - - - - Megahertz - megaHertz - - none - rate - 4 - 4 - - - 545 - - - Amount of CPU used by the Service Console and other applications during the interval - resourceCpuUsage - - - - System - sys - - - - Megahertz - megaHertz - - average - rate - 3 - 3 - - - 546 - - - Amount of CPU used by the Service Console and other applications during the interval - resourceCpuUsage - - - - System - sys - - - - Megahertz - megaHertz - - maximum - rate - 4 - 4 - - - 547 - - - Amount of CPU used by the Service Console and other applications during the interval - resourceCpuUsage - - - - System - sys - - - - Megahertz - megaHertz - - minimum - rate - 4 - 4 - - - 548 - - - Memory touched by the system resource group - resourceMemTouched - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 3 - 3 - - - 549 - - - Memory mapped by the system resource group - resourceMemMapped - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 3 - 3 - - - 550 - - - Memory saved due to sharing by the system resource group - resourceMemShared - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 3 - 3 - - - 551 - - - Memory swapped out by the system resource group - resourceMemSwapped - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 3 - 3 - - - 552 - - - Overhead memory consumed by the system resource group - resourceMemOverhead - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 3 - 3 - - - 553 - - - Memory shared by the system resource group - resourceMemCow - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 3 - 3 - - - 554 - - - Zero filled memory used by the system resource group - resourceMemZero - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 3 - 3 - - - 555 - - - CPU running average over 1 minute of the system resource group - resourceCpuRun1 - - - - System - sys - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 556 - - - CPU active average over 1 minute of the system resource group - resourceCpuAct1 - - - - System - sys - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 557 - - - CPU maximum limited over 1 minute of the system resource group - resourceCpuMaxLimited1 - - - - System - sys - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 558 - - - CPU running average over 5 minutes of the system resource group - resourceCpuRun5 - - - - System - sys - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 559 - - - CPU active average over 5 minutes of the system resource group - resourceCpuAct5 - - - - System - sys - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 560 - - - CPU maximum limited over 5 minutes of the system resource group - resourceCpuMaxLimited5 - - - - System - sys - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 561 - - - CPU allocation reservation (in MHz) of the system resource group - resourceCpuAllocMin - - - - System - sys - - - - Megahertz - megaHertz - - latest - absolute - 3 - 3 - - - 562 - - - CPU allocation limit (in MHz) of the system resource group - resourceCpuAllocMax - - - - System - sys - - - - Megahertz - megaHertz - - latest - absolute - 3 - 3 - - - 563 - - - CPU allocation shares of the system resource group - resourceCpuAllocShares - - - - System - sys - - - - Number - number - - latest - absolute - 3 - 3 - - - 564 - - - Memory allocation reservation (in KB) of the system resource group - resourceMemAllocMin - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 3 - 3 - - - 565 - - - Memory allocation limit (in KB) of the system resource group - resourceMemAllocMax - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 3 - 3 - - - 566 - - - Memory allocation shares of the system resource group - resourceMemAllocShares - - - - System - sys - - - - Number - number - - latest - absolute - 3 - 3 - - - 567 - - - Total time elapsed, in seconds, since last operating system boot-up - osUptime - - - - System - sys - - - - Second - second - - latest - absolute - 4 - 4 - - - 568 - - - Memory consumed by the system resource group - resourceMemConsumed - - - - System - sys - - - - Kilobyte - kiloBytes - - latest - absolute - 4 - 4 - - - 569 - - - Number of file descriptors used by the system resource group - resourceFdUsage - - - - System - sys - - - - Number - number - - latest - absolute - 4 - 4 - - - 570 - - - CPU active peak over 1 minute - actpk1 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 571 - - - CPU running average over 1 minute - runav1 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 572 - - - CPU active average over 5 minutes - actav5 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 573 - - - CPU active peak over 5 minutes - actpk5 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 574 - - - CPU running average over 5 minutes - runav5 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 575 - - - CPU active average over 15 minutes - actav15 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 576 - - - CPU active peak over 15 minutes - actpk15 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 577 - - - CPU running average over 15 minutes - runav15 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 578 - - - CPU running peak over 1 minute - runpk1 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 579 - - - Amount of CPU resources over the limit that were refused, average over 1 minute - maxLimited1 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 580 - - - CPU running peak over 5 minutes - runpk5 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 581 - - - Amount of CPU resources over the limit that were refused, average over 5 minutes - maxLimited5 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 582 - - - CPU running peak over 15 minutes - runpk15 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 583 - - - Amount of CPU resources over the limit that were refused, average over 15 minutes - maxLimited15 - - - - Resource group CPU - rescpu - - - - Percentage - percent - - latest - absolute - 3 - 3 - - - 584 - - - Group CPU sample count - sampleCount - - - - Resource group CPU - rescpu - - - - Number - number - - latest - absolute - 3 - 3 - - - 585 - - - Group CPU sample period - samplePeriod - - - - Resource group CPU - rescpu - - - - Millisecond - millisecond - - latest - absolute - 3 - 3 - - - 586 - - - Amount of total configured memory that is available for use - memUsed - - - - Management agent - managementAgent - - - - Kilobyte - kiloBytes - - average - absolute - 3 - 3 - - - 587 - - - Sum of the memory swapped by all powered-on virtual machines on the host - swapUsed - - - - Management agent - managementAgent - - - - Kilobyte - kiloBytes - - average - absolute - 3 - 3 - - - 588 - - - Amount of Service Console CPU usage - cpuUsage - - - - Management agent - managementAgent - - - - Megahertz - megaHertz - - average - rate - 3 - 3 - - - 589 - - - Average number of commands issued per second on the storage path during the collection interval - commandsAveraged - - - - Storage path - storagePath - - - - Number - number - - average - rate - 3 - 3 - - - 590 - - - Average number of read commands issued per second on the storage path during the collection interval - numberReadAveraged - - - - Storage path - storagePath - - - - Number - number - - average - rate - 3 - 3 - - - 591 - - - Average number of write commands issued per second on the storage path during the collection interval - numberWriteAveraged - - - - Storage path - storagePath - - - - Number - number - - average - rate - 3 - 3 - - - 592 - - - Rate of reading data on the storage path - read - - - - Storage path - storagePath - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 593 - - - Rate of writing data on the storage path - write - - - - Storage path - storagePath - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 3 - 3 - - - 594 - - - The average time a read issued on the storage path takes - totalReadLatency - - - - Storage path - storagePath - - - - Millisecond - millisecond - - average - absolute - 3 - 3 - - - 595 - - - The average time a write issued on the storage path takes - totalWriteLatency - - - - Storage path - storagePath - - - - Millisecond - millisecond - - average - absolute - 3 - 3 - - - 596 - - - Average read request size in bytes - readIOSize - - - - Virtual disk - virtualDisk - - - - Number - number - - latest - absolute - 4 - 4 - - - 597 - - - Average write request size in bytes - writeIOSize - - - - Virtual disk - virtualDisk - - - - Number - number - - latest - absolute - 4 - 4 - - - 598 - - - Number of seeks during the interval that were less than 64 LBNs apart - smallSeeks - - - - Virtual disk - virtualDisk - - - - Number - number - - latest - absolute - 4 - 4 - - - 599 - - - Number of seeks during the interval that were between 64 and 8192 LBNs apart - mediumSeeks - - - - Virtual disk - virtualDisk - - - - Number - number - - latest - absolute - 4 - 4 - - - 600 - - - Number of seeks during the interval that were greater than 8192 LBNs apart - largeSeeks - - - - Virtual disk - virtualDisk - - - - Number - number - - latest - absolute - 4 - 4 - - - 601 - - - Read latency in microseconds - readLatencyUS - - - - Virtual disk - virtualDisk - - - - Microsecond - microsecond - - latest - absolute - 4 - 4 - - - 602 - - - Write latency in microseconds - writeLatencyUS - - - - Virtual disk - virtualDisk - - - - Microsecond - microsecond - - latest - absolute - 4 - 4 - - - 603 - - - Storage I/O Control datastore maximum queue depth - datastoreMaxQueueDepth - - - - Datastore - datastore - - - - Number - number - - latest - absolute - 1 - 3 - - - 604 - - - unmapSize - unmapSize - - - - Datastore - datastore - - - - Megabyte - megaBytes - - summation - delta - 4 - 4 - - - 605 - - - unmapIOs - unmapIOs - - - - Datastore - datastore - - - - Number - number - - summation - delta - 4 - 4 - - - 606 - - - Current number of replicated virtual machines - hbrNumVms - - - - vSphere Replication - hbr - - - - Number - number - - average - absolute - 4 - 4 - - - 607 - - - Average amount of data received per second - hbrNetRx - - - - vSphere Replication - hbr - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 608 - - - Average amount of data transmitted per second - hbrNetTx - - - - vSphere Replication - hbr - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 609 - - - Number of caches controlled by the virtual flash module - numActiveVMDKs - - - - Virtual flash module related statistical values - vflashModule - - - - Number - number - - latest - absolute - 4 - 4 - - - 610 - - - Read IOPS - readIops - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Number - number - - average - rate - 4 - 4 - - - 611 - - - Read throughput in kBps - readThroughput - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 612 - - - Average read latency in ms - readAvgLatency - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Millisecond - millisecond - - average - absolute - 4 - 4 - - - 613 - - - Max read latency in ms - readMaxLatency - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Millisecond - millisecond - - latest - absolute - 4 - 4 - - - 614 - - - Cache hit rate percentage - readCacheHitRate - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Percentage - percent - - latest - absolute - 4 - 4 - - - 615 - - - Read congestion - readCongestion - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Number - number - - average - rate - 4 - 4 - - - 616 - - - Write IOPS - writeIops - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Number - number - - average - rate - 4 - 4 - - - 617 - - - Write throughput in kBps - writeThroughput - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 618 - - - Average write latency in ms - writeAvgLatency - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Millisecond - millisecond - - average - absolute - 4 - 4 - - - 619 - - - Max write latency in ms - writeMaxLatency - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Millisecond - millisecond - - latest - absolute - 4 - 4 - - - 620 - - - Write congestion - writeCongestion - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Number - number - - average - rate - 4 - 4 - - - 621 - - - Recovery write IOPS - recoveryWriteIops - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Number - number - - average - rate - 4 - 4 - - - 622 - - - Recovery write through-put in kBps - recoveryWriteThroughput - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Kilobytes per second - kiloBytesPerSecond - - average - rate - 4 - 4 - - - 623 - - - Average recovery write latency in ms - recoveryWriteAvgLatency - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Millisecond - millisecond - - average - absolute - 4 - 4 - - - 624 - - - Max recovery write latency in ms - recoveryWriteMaxLatency - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Millisecond - millisecond - - latest - absolute - 4 - 4 - - - 625 - - - Recovery write congestion - recoveryWriteCongestion - - - - vSAN DOM object related statistical values - vsanDomObj - - - - Number - number - - average - rate - 4 - 4 - - - 626 - - - The utilization of a GPU in percentages - utilization - - - - GPU - gpu - - - - Percentage - percent - - none - absolute - 4 - 4 - - - 627 - - - The utilization of a GPU in percentages - utilization - - - - GPU - gpu - - - - Percentage - percent - - average - absolute - 4 - 4 - - - 628 - - - The utilization of a GPU in percentages - utilization - - - - GPU - gpu - - - - Percentage - percent - - maximum - absolute - 4 - 4 - - - 629 - - - The utilization of a GPU in percentages - utilization - - - - GPU - gpu - - - - Percentage - percent - - minimum - absolute - 4 - 4 - - - 630 - - - The amount of GPU memory used in kilobytes - mem.used - - - - GPU - gpu - - - - Kilobyte - kiloBytes - - none - absolute - 4 - 4 - - - 631 - - - The amount of GPU memory used in kilobytes - mem.used - - - - GPU - gpu - - - - Kilobyte - kiloBytes - - average - absolute - 4 - 4 - - - 632 - - - The amount of GPU memory used in kilobytes - mem.used - - - - GPU - gpu - - - - Kilobyte - kiloBytes - - maximum - absolute - 4 - 4 - - - 633 - - - The amount of GPU memory used in kilobytes - mem.used - - - - GPU - gpu - - - - Kilobyte - kiloBytes - - minimum - absolute - 4 - 4 - - - 634 - - - The amount of GPU memory used in percentages of the total available - mem.usage - - - - GPU - gpu - - - - Percentage - percent - - none - absolute - 4 - 4 - - - 635 - - - The amount of GPU memory used in percentages of the total available - mem.usage - - - - GPU - gpu - - - - Percentage - percent - - average - absolute - 4 - 4 - - - 636 - - - The amount of GPU memory used in percentages of the total available - mem.usage - - - - GPU - gpu - - - - Percentage - percent - - maximum - absolute - 4 - 4 - - - 637 - - - The amount of GPU memory used in percentages of the total available - mem.usage - - - - GPU - gpu - - - - Percentage - percent - - minimum - absolute - 4 - 4 - - - 638 - - - The temperature of a GPU in degrees celsius - temperature - - - - GPU - gpu - - - - Temperature in degrees Celsius - celsius - - average - absolute - 4 - 4 - - - 639 - - - Persistent memory available reservation on a host. - available.reservation - - - - PMEM - pmem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 640 - - - Persistent memory reservation managed by DRS on a host. - drsmanaged.reservation - - - - PMEM - pmem - - - - Megabyte - megaBytes - - latest - absolute - 4 - 4 - - - 701 - - - Memory reservation health state, 2->Red, 1->Green - health.reservationState - - - - Memory - mem - - - - Number - number - - latest - absolute - 4 - 4 - - - + + PerfMgr + + perfCounter + + + 1 + + + CPU usage as a percentage during the interval + usage + + + + CPU + cpu + + + + Percentage + percent + + none + rate + 4 + 4 + + + 2 + + + CPU usage as a percentage during the interval + usage + + + + CPU + cpu + + + + Percentage + percent + + average + rate + 1 + 3 + + + 3 + + + CPU usage as a percentage during the interval + usage + + + + CPU + cpu + + + + Percentage + percent + + minimum + rate + 4 + 4 + + + 4 + + + CPU usage as a percentage during the interval + usage + + + + CPU + cpu + + + + Percentage + percent + + maximum + rate + 4 + 4 + + + 5 + + + CPU usage in megahertz during the interval + usagemhz + + + + CPU + cpu + + + + Megahertz + megaHertz + + none + rate + 4 + 4 + + + 6 + + + CPU usage in megahertz during the interval + usagemhz + + + + CPU + cpu + + + + Megahertz + megaHertz + + average + rate + 1 + 3 + + + 7 + + + CPU usage in megahertz during the interval + usagemhz + + + + CPU + cpu + + + + Megahertz + megaHertz + + minimum + rate + 4 + 4 + + + 8 + + + CPU usage in megahertz during the interval + usagemhz + + + + CPU + cpu + + + + Megahertz + megaHertz + + maximum + rate + 4 + 4 + + + 9 + + + Total CPU capacity reserved by virtual machines + reservedCapacity + + + + CPU + cpu + + + + Megahertz + megaHertz + + average + absolute + 2 + 3 + + + 10 + + + Amount of time spent on system processes on each virtual CPU in the virtual machine + system + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 3 + 3 + + + 11 + + + Total CPU time spent in wait state + wait + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 3 + 3 + + + 12 + + + Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval + ready + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 1 + 3 + + + 13 + + + Total time that the CPU spent in an idle state + idle + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 2 + 3 + + + 14 + + + Total CPU usage + used + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 3 + 3 + + + 15 + + + Capacity in MHz of the physical CPU cores + capacity.provisioned + + + + CPU + cpu + + + + Megahertz + megaHertz + + average + absolute + 4 + 4 + + + 16 + + + CPU resources devoted by the ESXi scheduler to the virtual machines and resource pools + capacity.entitlement + + + + CPU + cpu + + + + Megahertz + megaHertz + + average + absolute + 4 + 4 + + + 17 + + + CPU usage as a percent during the interval + capacity.usage + + + + CPU + cpu + + + + Megahertz + megaHertz + + average + rate + 4 + 4 + + + 18 + + + The amount of CPU resources a VM would use if there were no CPU contention + capacity.demand + + + + CPU + cpu + + + + Megahertz + megaHertz + + average + absolute + 4 + 4 + + + 19 + + + Percent of time the VM is unable to run because it is contending for access to the physical CPU(s) + capacity.contention + + + + CPU + cpu + + + + Percentage + percent + + average + rate + 4 + 4 + + + 20 + + + The number of virtual processors provisioned to the entity + corecount.provisioned + + + + CPU + cpu + + + + Number + number + + average + absolute + 4 + 4 + + + 21 + + + The number of virtual processors running on the host + corecount.usage + + + + CPU + cpu + + + + Number + number + + average + absolute + 4 + 4 + + + 22 + + + Time the VM vCPU is ready to run, but is unable to run due to co-scheduling constraints + corecount.contention + + + + CPU + cpu + + + + Percentage + percent + + average + rate + 4 + 4 + + + 23 + + + Percentage of host physical memory that has been consumed + usage + + + + Memory + mem + + + + Percentage + percent + + none + absolute + 4 + 4 + + + 24 + + + Percentage of host physical memory that has been consumed + usage + + + + Memory + mem + + + + Percentage + percent + + average + absolute + 1 + 3 + + + 25 + + + Percentage of host physical memory that has been consumed + usage + + + + Memory + mem + + + + Percentage + percent + + minimum + absolute + 4 + 4 + + + 26 + + + Percentage of host physical memory that has been consumed + usage + + + + Memory + mem + + + + Percentage + percent + + maximum + absolute + 4 + 4 + + + 27 + + + Memory reservation consumed by powered-on virtual machines + reservedCapacity + + + + Memory + mem + + + + Megabyte + megaBytes + + average + absolute + 2 + 3 + + + 28 + + + Amount of host physical memory or physical memory that is mapped for a virtual machine or a host + granted + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 29 + + + Amount of host physical memory or physical memory that is mapped for a virtual machine or a host + granted + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 30 + + + Amount of host physical memory or physical memory that is mapped for a virtual machine or a host + granted + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 31 + + + Amount of host physical memory or physical memory that is mapped for a virtual machine or a host + granted + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 32 + + + Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi + active + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 33 + + + Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi + active + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 34 + + + Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi + active + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 35 + + + Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi + active + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 36 + + + Amount of guest physical memory that is shared within a single virtual machine or across virtual machines + shared + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 37 + + + Amount of guest physical memory that is shared within a single virtual machine or across virtual machines + shared + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 38 + + + Amount of guest physical memory that is shared within a single virtual machine or across virtual machines + shared + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 39 + + + Amount of guest physical memory that is shared within a single virtual machine or across virtual machines + shared + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 40 + + + Guest physical memory pages whose content is 0x00 + zero + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 41 + + + Guest physical memory pages whose content is 0x00 + zero + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 42 + + + Guest physical memory pages whose content is 0x00 + zero + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 43 + + + Guest physical memory pages whose content is 0x00 + zero + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 44 + + + Amount by which reservation can be raised + unreserved + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 45 + + + Amount by which reservation can be raised + unreserved + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 46 + + + Amount by which reservation can be raised + unreserved + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 47 + + + Amount by which reservation can be raised + unreserved + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 48 + + + Swap storage space consumed + swapused + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 49 + + + Swap storage space consumed + swapused + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 50 + + + Swap storage space consumed + swapused + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 51 + + + Swap storage space consumed + swapused + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 52 + + + swapunreserved + swapunreserved + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 53 + + + swapunreserved + swapunreserved + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 54 + + + swapunreserved + swapunreserved + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 55 + + + swapunreserved + swapunreserved + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 56 + + + Amount of host physical memory that backs shared guest physical memory (Shared) + sharedcommon + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 57 + + + Amount of host physical memory that backs shared guest physical memory (Shared) + sharedcommon + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 58 + + + Amount of host physical memory that backs shared guest physical memory (Shared) + sharedcommon + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 59 + + + Amount of host physical memory that backs shared guest physical memory (Shared) + sharedcommon + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 60 + + + Virtual address space of ESXi that is dedicated to its heap + heap + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 61 + + + Virtual address space of ESXi that is dedicated to its heap + heap + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 62 + + + Virtual address space of ESXi that is dedicated to its heap + heap + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 63 + + + Virtual address space of ESXi that is dedicated to its heap + heap + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 64 + + + Free address space in the heap of ESXi. This is less than or equal to Heap + heapfree + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 65 + + + Free address space in the heap of ESXi. This is less than or equal to Heap + heapfree + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 66 + + + Free address space in the heap of ESXi. This is less than or equal to Heap + heapfree + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 67 + + + Free address space in the heap of ESXi. This is less than or equal to Heap + heapfree + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 68 + + + Current memory availability state of ESXi. Possible values are high, clear, soft, hard, low. The state value determines the techniques used for memory reclamation from virtual machines + state + + + + Memory + mem + + + + Number + number + + latest + absolute + 2 + 3 + + + 69 + + + Amount of guest physical memory that is swapped out to the swap space + swapped + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 70 + + + Amount of guest physical memory that is swapped out to the swap space + swapped + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 71 + + + Amount of guest physical memory that is swapped out to the swap space + swapped + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 72 + + + Amount of guest physical memory that is swapped out to the swap space + swapped + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 73 + + + Amount of memory that ESXi needs to reclaim by swapping + swaptarget + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 74 + + + Amount of memory that ESXi needs to reclaim by swapping + swaptarget + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 75 + + + Amount of memory that ESXi needs to reclaim by swapping + swaptarget + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 76 + + + Amount of memory that ESXi needs to reclaim by swapping + swaptarget + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 77 + + + swapIn + swapIn + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 78 + + + swapIn + swapIn + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 79 + + + swapIn + swapIn + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 80 + + + swapIn + swapIn + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 81 + + + swapOut + swapOut + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 82 + + + swapOut + swapOut + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 83 + + + swapOut + swapOut + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 84 + + + swapOut + swapOut + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 85 + + + Rate at which guest physical memory is swapped in from the swap space + swapinRate + + + + Memory + mem + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 1 + 3 + + + 86 + + + Rate at which guest physical memory is swapped out to the swap space + swapoutRate + + + + Memory + mem + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 1 + 3 + + + 87 + + + Amount of memory that is swapped out for the Service Console + swapOut + + + + Management agent + managementAgent + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 88 + + + Amount of memory that is swapped in for the Service Console + swapIn + + + + Management agent + managementAgent + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 89 + + + Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest + vmmemctl + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 90 + + + Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest + vmmemctl + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 1 + 3 + + + 91 + + + Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest + vmmemctl + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 92 + + + Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest + vmmemctl + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 93 + + + Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi + vmmemctltarget + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 94 + + + Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi + vmmemctltarget + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 95 + + + Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi + vmmemctltarget + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 96 + + + Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi + vmmemctltarget + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 97 + + + Amount of host physical memory consumed for backing up guest physical memory pages + consumed + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 98 + + + Amount of host physical memory consumed for backing up guest physical memory pages + consumed + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 1 + 3 + + + 99 + + + Amount of host physical memory consumed for backing up guest physical memory pages + consumed + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 100 + + + Amount of host physical memory consumed for backing up guest physical memory pages + consumed + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 101 + + + Host physical memory consumed by ESXi data structures for running the virtual machines + overhead + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 102 + + + Host physical memory consumed by ESXi data structures for running the virtual machines + overhead + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 1 + 1 + + + 103 + + + Host physical memory consumed by ESXi data structures for running the virtual machines + overhead + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 104 + + + Host physical memory consumed by ESXi data structures for running the virtual machines + overhead + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 105 + + + Guest physical memory pages that have undergone memory compression + compressed + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 106 + + + Rate of guest physical memory page compression by ESXi + compressionRate + + + + Memory + mem + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 107 + + + Rate of guest physical memory decompression + decompressionRate + + + + Memory + mem + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 108 + + + Total amount of memory available to the host + capacity.provisioned + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 109 + + + Amount of host physical memory the VM is entitled to, as determined by the ESXi scheduler + capacity.entitlement + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 110 + + + Amount of physical memory available for use by virtual machines on this host + capacity.usable + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 111 + + + Amount of physical memory actively used + capacity.usage + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 112 + + + Percentage of time VMs are waiting to access swapped, compressed or ballooned memory + capacity.contention + + + + Memory + mem + + + + Percentage + percent + + average + rate + 4 + 4 + + + 113 + + + vm + capacity.usage.vm + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 114 + + + vmOvrhd + capacity.usage.vmOvrhd + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 115 + + + vmkOvrhd + capacity.usage.vmkOvrhd + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 116 + + + userworld + capacity.usage.userworld + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 117 + + + vm + reservedCapacity.vm + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 118 + + + vmOvhd + reservedCapacity.vmOvhd + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 119 + + + vmkOvrhd + reservedCapacity.vmkOvrhd + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 120 + + + userworld + reservedCapacity.userworld + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 121 + + + Percent of memory that has been reserved either through VMkernel use, by userworlds or due to VM memory reservations + reservedCapacityPct + + + + Memory + mem + + + + Percentage + percent + + average + absolute + 4 + 4 + + + 122 + + + Amount of physical memory consumed by VMs on this host + consumed.vms + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 123 + + + Amount of physical memory consumed by userworlds on this host + consumed.userworlds + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 4 + + + 124 + + + Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval. + usage + + + + Disk + disk + + + + Kilobytes per second + kiloBytesPerSecond + + none + rate + 4 + 4 + + + 125 + + + Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval. + usage + + + + Disk + disk + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 1 + 3 + + + 126 + + + Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval. + usage + + + + Disk + disk + + + + Kilobytes per second + kiloBytesPerSecond + + minimum + rate + 4 + 4 + + + 127 + + + Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval. + usage + + + + Disk + disk + + + + Kilobytes per second + kiloBytesPerSecond + + maximum + rate + 4 + 4 + + + 128 + + + Number of disk reads during the collection interval + numberRead + + + + Disk + disk + + + + Number + number + + summation + delta + 3 + 3 + + + 129 + + + Number of disk writes during the collection interval + numberWrite + + + + Disk + disk + + + + Number + number + + summation + delta + 3 + 3 + + + 130 + + + Average number of kilobytes read from the disk each second during the collection interval + read + + + + Disk + disk + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 131 + + + Average number of kilobytes written to disk each second during the collection interval + write + + + + Disk + disk + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 132 + + + Average amount of time taken during the collection interval to process a SCSI command issued by the guest OS to the virtual machine + totalLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 3 + 3 + + + 133 + + + Highest latency value across all disks used by the host + maxTotalLatency + + + + Disk + disk + + + + Millisecond + millisecond + + latest + absolute + 1 + 3 + + + 134 + + + Number of SCSI commands aborted during the collection interval + commandsAborted + + + + Disk + disk + + + + Number + number + + summation + delta + 2 + 3 + + + 135 + + + Number of SCSI-bus reset commands issued during the collection interval + busResets + + + + Disk + disk + + + + Number + number + + summation + delta + 2 + 3 + + + 136 + + + Average number of disk reads per second during the collection interval + numberReadAveraged + + + + Disk + disk + + + + Number + number + + average + rate + 1 + 3 + + + 137 + + + Average number of disk writes per second during the collection interval + numberWriteAveraged + + + + Disk + disk + + + + Number + number + + average + rate + 1 + 3 + + + 138 + + + Aggregated disk I/O rate, including the rates for all virtual machines running on the host during the collection interval + throughput.usage + + + + Disk + disk + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 139 + + + Average amount of time for an I/O operation to complete successfully + throughput.contention + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 4 + 4 + + + 140 + + + Number of SCSI reservation conflicts for the LUN during the collection interval + scsiReservationConflicts + + + + Disk + disk + + + + Number + number + + summation + delta + 2 + 2 + + + 141 + + + Number of SCSI reservation conflicts for the LUN as a percent of total commands during the collection interval + scsiReservationCnflctsPct + + + + Disk + disk + + + + Percentage + percent + + average + absolute + 4 + 4 + + + 142 + + + Network utilization (combined transmit-rates and receive-rates) during the interval + usage + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + none + rate + 4 + 4 + + + 143 + + + Network utilization (combined transmit-rates and receive-rates) during the interval + usage + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 1 + 3 + + + 144 + + + Network utilization (combined transmit-rates and receive-rates) during the interval + usage + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + minimum + rate + 4 + 4 + + + 145 + + + Network utilization (combined transmit-rates and receive-rates) during the interval + usage + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + maximum + rate + 4 + 4 + + + 146 + + + Number of packets received during the interval + packetsRx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 147 + + + Number of packets transmitted during the interval + packetsTx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 148 + + + Average rate at which data was received during the interval + received + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 149 + + + Average rate at which data was transmitted during the interval + transmitted + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 150 + + + The maximum network bandwidth for the host + throughput.provisioned + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + absolute + 4 + 4 + + + 151 + + + The current available network bandwidth for the host + throughput.usable + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + absolute + 4 + 4 + + + 152 + + + The current network bandwidth usage for the host + throughput.usage + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 153 + + + The aggregate network droppped packets for the host + throughput.contention + + + + Network + net + + + + Number + number + + summation + delta + 4 + 4 + + + 154 + + + Average rate of packets received and transmitted per second + throughput.packetsPerSec + + + + Network + net + + + + Number + number + + average + rate + 4 + 4 + + + 155 + + + Total time elapsed, in seconds, since last system startup + uptime + + + + System + sys + + + + Second + second + + latest + absolute + 1 + 3 + + + 156 + + + Number of heartbeats issued per virtual machine during the interval + heartbeat + + + + System + sys + + + + Number + number + + summation + delta + 1 + 3 + + + 157 + + + Current power usage + power + + + + Power + power + + + + Watt + watt + + average + rate + 2 + 3 + + + 158 + + + Maximum allowed power usage + powerCap + + + + Power + power + + + + Watt + watt + + average + absolute + 3 + 3 + + + 159 + + + Total energy used since last stats reset + energy + + + + Power + power + + + + Joule + joule + + summation + delta + 3 + 3 + + + 160 + + + Current power usage as a percentage of maximum allowed power + capacity.usagePct + + + + Power + power + + + + Percentage + percent + + average + absolute + 4 + 4 + + + 161 + + + Average number of commands issued per second by the storage adapter during the collection interval + commandsAveraged + + + + Storage adapter + storageAdapter + + + + Number + number + + average + rate + 2 + 2 + + + 162 + + + Average number of read commands issued per second by the storage adapter during the collection interval + numberReadAveraged + + + + Storage adapter + storageAdapter + + + + Number + number + + average + rate + 2 + 2 + + + 163 + + + Average number of write commands issued per second by the storage adapter during the collection interval + numberWriteAveraged + + + + Storage adapter + storageAdapter + + + + Number + number + + average + rate + 2 + 2 + + + 164 + + + Rate of reading data by the storage adapter + read + + + + Storage adapter + storageAdapter + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 2 + + + 165 + + + Rate of writing data by the storage adapter + write + + + + Storage adapter + storageAdapter + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 2 + + + 166 + + + The average time a read by the storage adapter takes + totalReadLatency + + + + Storage adapter + storageAdapter + + + + Millisecond + millisecond + + average + absolute + 2 + 2 + + + 167 + + + The average time a write by the storage adapter takes + totalWriteLatency + + + + Storage adapter + storageAdapter + + + + Millisecond + millisecond + + average + absolute + 2 + 2 + + + 168 + + + Highest latency value across all storage adapters used by the host + maxTotalLatency + + + + Storage adapter + storageAdapter + + + + Millisecond + millisecond + + latest + absolute + 3 + 3 + + + 169 + + + Average amount of time for an I/O operation to complete successfully + throughput.cont + + + + Storage adapter + storageAdapter + + + + Millisecond + millisecond + + average + absolute + 4 + 4 + + + 170 + + + The percent of I/Os that have been issued but have not yet completed + OIOsPct + + + + Storage adapter + storageAdapter + + + + Percentage + percent + + average + absolute + 4 + 4 + + + 171 + + + Average number of read commands issued per second to the virtual disk during the collection interval + numberReadAveraged + + + + Virtual disk + virtualDisk + + + + Number + number + + average + rate + 1 + 3 + + + 172 + + + Average number of write commands issued per second to the virtual disk during the collection interval + numberWriteAveraged + + + + Virtual disk + virtualDisk + + + + Number + number + + average + rate + 1 + 3 + + + 173 + + + Rate of reading data from the virtual disk + read + + + + Virtual disk + virtualDisk + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 2 + + + 174 + + + Rate of writing data to the virtual disk + write + + + + Virtual disk + virtualDisk + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 2 + + + 175 + + + The average time a read from the virtual disk takes + totalReadLatency + + + + Virtual disk + virtualDisk + + + + Millisecond + millisecond + + average + absolute + 1 + 3 + + + 176 + + + The average time a write to the virtual disk takes + totalWriteLatency + + + + Virtual disk + virtualDisk + + + + Millisecond + millisecond + + average + absolute + 1 + 3 + + + 177 + + + Average amount of time for an I/O operation to complete successfully + throughput.cont + + + + Virtual disk + virtualDisk + + + + Millisecond + millisecond + + average + absolute + 4 + 4 + + + 178 + + + Average number of read commands issued per second to the datastore during the collection interval + numberReadAveraged + + + + Datastore + datastore + + + + Number + number + + average + rate + 1 + 3 + + + 179 + + + Average number of write commands issued per second to the datastore during the collection interval + numberWriteAveraged + + + + Datastore + datastore + + + + Number + number + + average + rate + 1 + 3 + + + 180 + + + Rate of reading data from the datastore + read + + + + Datastore + datastore + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 2 + + + 181 + + + Rate of writing data to the datastore + write + + + + Datastore + datastore + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 2 + + + 182 + + + The average time a read from the datastore takes + totalReadLatency + + + + Datastore + datastore + + + + Millisecond + millisecond + + average + absolute + 1 + 3 + + + 183 + + + The average time a write to the datastore takes + totalWriteLatency + + + + Datastore + datastore + + + + Millisecond + millisecond + + average + absolute + 1 + 3 + + + 184 + + + Highest latency value across all datastores used by the host + maxTotalLatency + + + + Datastore + datastore + + + + Millisecond + millisecond + + latest + absolute + 3 + 3 + + + 185 + + + Storage I/O Control aggregated IOPS + datastoreIops + + + + Datastore + datastore + + + + Number + number + + average + absolute + 1 + 3 + + + 186 + + + Storage I/O Control size-normalized I/O latency + sizeNormalizedDatastoreLatency + + + + Datastore + datastore + + + + Microsecond + microsecond + + average + absolute + 1 + 3 + + + 187 + + + usage + throughput.usage + + + + Datastore + datastore + + + + Kilobytes per second + kiloBytesPerSecond + + average + absolute + 4 + 4 + + + 188 + + + contention + throughput.contention + + + + Datastore + datastore + + + + Millisecond + millisecond + + average + absolute + 4 + 4 + + + 189 + + + busResets + busResets + + + + Datastore + datastore + + + + Number + number + + summation + delta + 2 + 2 + + + 190 + + + commandsAborted + commandsAborted + + + + Datastore + datastore + + + + Number + number + + summation + delta + 2 + 2 + + + 191 + + + Percentage of time Storage I/O Control actively controlled datastore latency + siocActiveTimePercentage + + + + Datastore + datastore + + + + Percentage + percent + + average + absolute + 1 + 3 + + + 192 + + + Average amount of time for an I/O operation to complete successfully + throughput.cont + + + + Storage path + storagePath + + + + Millisecond + millisecond + + average + absolute + 4 + 4 + + + 193 + + + Highest latency value across all storage paths used by the host + maxTotalLatency + + + + Storage path + storagePath + + + + Millisecond + millisecond + + latest + absolute + 3 + 3 + + + 194 + + + Virtual disk I/O rate + throughput.usage + + + + Virtual disk + virtualDisk + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 195 + + + Number of terminations to a virtual disk + commandsAborted + + + + Virtual disk + virtualDisk + + + + Number + number + + summation + delta + 2 + 4 + + + 196 + + + Number of resets to a virtual disk + busResets + + + + Virtual disk + virtualDisk + + + + Number + number + + summation + delta + 2 + 4 + + + 197 + + + The number of I/Os that have been issued but have not yet completed + outstandingIOs + + + + Storage adapter + storageAdapter + + + + Number + number + + average + absolute + 2 + 2 + + + 198 + + + The current number of I/Os that are waiting to be issued + queued + + + + Storage adapter + storageAdapter + + + + Number + number + + average + absolute + 2 + 2 + + + 199 + + + The maximum number of I/Os that can be outstanding at a given time + queueDepth + + + + Storage adapter + storageAdapter + + + + Number + number + + average + absolute + 2 + 2 + + + 200 + + + Average amount of time spent in the VMkernel queue, per SCSI command, during the collection interval + queueLatency + + + + Storage adapter + storageAdapter + + + + Millisecond + millisecond + + average + absolute + 2 + 2 + + + 201 + + + The storage adapter's I/O rate + throughput.usag + + + + Storage adapter + storageAdapter + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 202 + + + Number of SCSI-bus reset commands issued during the collection interval + busResets + + + + Storage path + storagePath + + + + Number + number + + summation + delta + 2 + 3 + + + 203 + + + Number of SCSI commands terminated during the collection interval + commandsAborted + + + + Storage path + storagePath + + + + Number + number + + summation + delta + 2 + 3 + + + 204 + + + Storage path I/O rate + throughput.usage + + + + Storage path + storagePath + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 205 + + + Average pNic I/O rate for VMs + throughput.usage.vm + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 206 + + + Average pNic I/O rate for NFS + throughput.usage.nfs + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 207 + + + Average pNic I/O rate for vMotion + throughput.usage.vmotion + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 208 + + + Average pNic I/O rate for FT + throughput.usage.ft + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 209 + + + Average pNic I/O rate for iSCSI + throughput.usage.iscsi + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 210 + + + Average pNic I/O rate for HBR + throughput.usage.hbr + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 211 + + + Current maximum allowed power usage + capacity.usable + + + + Power + power + + + + Watt + watt + + average + absolute + 4 + 4 + + + 212 + + + Current power usage + capacity.usage + + + + Power + power + + + + Watt + watt + + average + absolute + 4 + 4 + + + 213 + + + Amount of CPU resources allocated to the virtual machine or resource pool, based on the total cluster capacity and the resource configuration of the resource hierarchy + cpuentitlement + + + + CPU + cpu + + + + Megahertz + megaHertz + + latest + absolute + 2 + 3 + + + 214 + + + Memory allocation as calculated by the VMkernel scheduler based on current estimated demand and reservation, limit, and shares policies set for all virtual machines and resource pools in the host or cluster + mementitlement + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 2 + 3 + + + 215 + + + DRS score of the virtual machine + vmDrsScore + + + + Cluster services + clusterServices + + + + Percentage + percent + + latest + absolute + 1 + 1 + + + 216 + + + Fairness of distributed CPU resource allocation + cpufairness + + + + Cluster services + clusterServices + + + + Number + number + + latest + absolute + 1 + 3 + + + 217 + + + Aggregate available memory resources of all the hosts within a cluster + memfairness + + + + Cluster services + clusterServices + + + + Number + number + + latest + absolute + 1 + 3 + + + 218 + + + The rate of transmitted packets for this VDS + throughput.pktsTx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 219 + + + The rate of transmitted Multicast packets for this VDS + throughput.pktsTxMulticast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 220 + + + The rate of transmitted Broadcast packets for this VDS + throughput.pktsTxBroadcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 221 + + + The rate of received packets for this vDS + throughput.pktsRx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 222 + + + The rate of received Multicast packets for this VDS + throughput.pktsRxMulticast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 223 + + + The rate of received Broadcast packets for this VDS + throughput.pktsRxBroadcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 224 + + + Count of dropped transmitted packets for this VDS + throughput.droppedTx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 225 + + + Count of dropped received packets for this VDS + throughput.droppedRx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 226 + + + The rate of transmitted packets for this DVPort + throughput.vds.pktsTx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 227 + + + The rate of transmitted multicast packets for this DVPort + throughput.vds.pktsTxMcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 228 + + + The rate of transmitted broadcast packets for this DVPort + throughput.vds.pktsTxBcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 229 + + + The rate of received packets for this DVPort + throughput.vds.pktsRx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 230 + + + The rate of received multicast packets for this DVPort + throughput.vds.pktsRxMcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 231 + + + The rate of received broadcast packets for this DVPort + throughput.vds.pktsRxBcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 232 + + + Count of dropped transmitted packets for this DVPort + throughput.vds.droppedTx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 233 + + + Count of dropped received packets for this DVPort + throughput.vds.droppedRx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 234 + + + The rate of transmitted packets for this LAG + throughput.vds.lagTx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 235 + + + The rate of transmitted Multicast packets for this LAG + throughput.vds.lagTxMcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 236 + + + The rate of transmitted Broadcast packets for this LAG + throughput.vds.lagTxBcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 237 + + + The rate of received packets for this LAG + throughput.vds.lagRx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 238 + + + The rate of received multicast packets for this LAG + throughput.vds.lagRxMcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 239 + + + The rate of received Broadcast packets for this LAG + throughput.vds.lagRxBcast + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 240 + + + Count of dropped transmitted packets for this LAG + throughput.vds.lagDropTx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 241 + + + Count of dropped received packets for this LAG + throughput.vds.lagDropRx + + + + Network + net + + + + Number + number + + average + absolute + 3 + 3 + + + 242 + + + Number of virtual machine power on operations + numPoweron + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 243 + + + Number of virtual machine power off operations + numPoweroff + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 244 + + + Number of virtual machine suspend operations + numSuspend + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 245 + + + Number of virtual machine reset operations + numReset + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 246 + + + Number of virtual machine guest reboot operations + numRebootGuest + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 247 + + + Number of virtual machine standby guest operations + numStandbyGuest + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 248 + + + Number of virtual machine guest shutdown operations + numShutdownGuest + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 249 + + + Number of virtual machine create operations + numCreate + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 250 + + + Number of virtual machine delete operations + numDestroy + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 251 + + + Number of virtual machine register operations + numRegister + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 252 + + + Number of virtual machine unregister operations + numUnregister + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 253 + + + Number of virtual machine reconfigure operations + numReconfigure + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 254 + + + Number of virtual machine clone operations + numClone + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 255 + + + Number of virtual machine template deploy operations + numDeploy + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 256 + + + Number of host change operations for powered-off and suspended VMs + numChangeHost + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 257 + + + Number of datastore change operations for powered-off and suspended virtual machines + numChangeDS + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 258 + + + Number of host and datastore change operations for powered-off and suspended virtual machines + numChangeHostDS + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 259 + + + Number of migrations with vMotion (host change operations for powered-on VMs) + numVMotion + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 260 + + + Number of migrations with Storage vMotion (datastore change operations for powered-on VMs) + numSVMotion + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 261 + + + Number of host and datastore change operations for powered-on and suspended virtual machines + numXVMotion + + + + Virtual machine operations + vmop + + + + Number + number + + latest + absolute + 1 + 3 + + + 262 + + + Total available CPU resources of all hosts within a cluster + effectivecpu + + + + Cluster services + clusterServices + + + + Megahertz + megaHertz + + average + rate + 1 + 3 + + + 263 + + + Total amount of machine memory of all hosts in the cluster that is available for use for virtual machine memory and overhead memory + effectivemem + + + + Cluster services + clusterServices + + + + Megabyte + megaBytes + + average + absolute + 1 + 3 + + + 264 + + + Total amount of CPU resources of all hosts in the cluster + totalmhz + + + + CPU + cpu + + + + Megahertz + megaHertz + + average + rate + 1 + 3 + + + 265 + + + Total amount of host physical memory of all hosts in the cluster that is available for virtual machine memory (physical memory for use by the guest OS) and virtual machine overhead memory + totalmb + + + + Memory + mem + + + + Megabyte + megaBytes + + average + absolute + 1 + 3 + + + 266 + + + DRS score of the cluster + clusterDrsScore + + + + Cluster services + clusterServices + + + + Percentage + percent + + latest + absolute + 1 + 1 + + + 267 + + + vSphere HA number of failures that can be tolerated + failover + + + + Cluster services + clusterServices + + + + Number + number + + latest + absolute + 1 + 3 + + + 268 + + + Amount of space actually used by the virtual machine or the datastore + used + + + + Disk + disk + + + + Kilobyte + kiloBytes + + latest + absolute + 1 + 1 + + + 269 + + + Amount of storage set aside for use by a datastore or a virtual machine + provisioned + + + + Disk + disk + + + + Kilobyte + kiloBytes + + latest + absolute + 1 + 1 + + + 270 + + + Configured size of the datastore + capacity + + + + Disk + disk + + + + Kilobyte + kiloBytes + + latest + absolute + 1 + 3 + + + 271 + + + Amount of space associated exclusively with a virtual machine + unshared + + + + Disk + disk + + + + Kilobyte + kiloBytes + + latest + absolute + 1 + 1 + + + 272 + + + Storage overhead of a virtual machine or a datastore due to delta disk backings + deltaused + + + + Disk + disk + + + + Kilobyte + kiloBytes + + latest + absolute + 2 + 3 + + + 273 + + + provisioned + capacity.provisioned + + + + Disk + disk + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 274 + + + usage + capacity.usage + + + + Disk + disk + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 275 + + + contention + capacity.contention + + + + Disk + disk + + + + Percentage + percent + + average + absolute + 4 + 4 + + + 276 + + + The latency of an activation operation in vCenter Server + activationlatencystats + + + + vCenter debugging information + vcDebugInfo + + + + Millisecond + millisecond + + maximum + absolute + 4 + 4 + + + 277 + + + The latency of an activation operation in vCenter Server + activationlatencystats + + + + vCenter debugging information + vcDebugInfo + + + + Millisecond + millisecond + + minimum + absolute + 4 + 4 + + + 278 + + + The latency of an activation operation in vCenter Server + activationlatencystats + + + + vCenter debugging information + vcDebugInfo + + + + Millisecond + millisecond + + summation + absolute + 1 + 1 + + + 279 + + + Activation operations in vCenter Server + activationstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 280 + + + Activation operations in vCenter Server + activationstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 281 + + + Activation operations in vCenter Server + activationstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 282 + + + buffersz + buffersz + + + + vCenter resource usage information + vcResources + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 283 + + + cachesz + cachesz + + + + vCenter resource usage information + vcResources + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 284 + + + Number of context switches per second on the system where vCenter Server is running + ctxswitchesrate + + + + vCenter resource usage information + vcResources + + + + Number + number + + average + rate + 1 + 1 + + + 285 + + + diskreadsectorrate + diskreadsectorrate + + + + vCenter resource usage information + vcResources + + + + Number + number + + average + rate + 4 + 4 + + + 286 + + + Number of disk reads per second on the system where vCenter Server is running + diskreadsrate + + + + vCenter resource usage information + vcResources + + + + Number + number + + average + rate + 1 + 1 + + + 287 + + + diskwritesectorrate + diskwritesectorrate + + + + vCenter resource usage information + vcResources + + + + Number + number + + average + rate + 4 + 4 + + + 288 + + + Number of disk writes per second on the system where vCenter Server is running + diskwritesrate + + + + vCenter resource usage information + vcResources + + + + Number + number + + average + rate + 1 + 1 + + + 289 + + + The latency of a host sync operation in vCenter Server + hostsynclatencystats + + + + vCenter debugging information + vcDebugInfo + + + + Millisecond + millisecond + + maximum + absolute + 4 + 4 + + + 290 + + + The latency of a host sync operation in vCenter Server + hostsynclatencystats + + + + vCenter debugging information + vcDebugInfo + + + + Millisecond + millisecond + + minimum + absolute + 4 + 4 + + + 291 + + + The latency of a host sync operation in vCenter Server + hostsynclatencystats + + + + vCenter debugging information + vcDebugInfo + + + + Millisecond + millisecond + + summation + absolute + 1 + 1 + + + 292 + + + The number of host sync operations in vCenter Server + hostsyncstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 293 + + + The number of host sync operations in vCenter Server + hostsyncstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 294 + + + The number of host sync operations in vCenter Server + hostsyncstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 295 + + + vCenter Server inventory statistics + inventorystats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 296 + + + vCenter Server inventory statistics + inventorystats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 297 + + + vCenter Server inventory statistics + inventorystats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 298 + + + vCenter Server locking statistics + lockstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 299 + + + vCenter Server locking statistics + lockstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 300 + + + vCenter Server locking statistics + lockstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 301 + + + vCenter Server LRO statistics + lrostats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 302 + + + vCenter Server LRO statistics + lrostats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 303 + + + vCenter Server LRO statistics + lrostats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 304 + + + Miscellaneous statistics + miscstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 305 + + + Miscellaneous statistics + miscstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 306 + + + Miscellaneous statistics + miscstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 307 + + + Managed object reference counts in vCenter Server + morefregstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 308 + + + Managed object reference counts in vCenter Server + morefregstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 309 + + + Managed object reference counts in vCenter Server + morefregstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 310 + + + Rate of the number of total packets received per second on the system where vCenter Server is running + packetrecvrate + + + + vCenter resource usage information + vcResources + + + + Number + number + + average + rate + 1 + 1 + + + 311 + + + Number of total packets sent per second on the system where vCenter Server is running + packetsentrate + + + + vCenter resource usage information + vcResources + + + + Number + number + + average + rate + 1 + 1 + + + 312 + + + Total system CPU used on the system where vCenter Server in running + systemcpuusage + + + + vCenter resource usage information + vcResources + + + + Percentage + percent + + average + rate + 1 + 1 + + + 313 + + + Number of page faults per second on the system where vCenter Server is running + pagefaultrate + + + + vCenter resource usage information + vcResources + + + + Number + number + + average + rate + 1 + 1 + + + 314 + + + Physical memory used by vCenter + physicalmemusage + + + + vCenter resource usage information + vcResources + + + + Kilobyte + kiloBytes + + average + absolute + 1 + 1 + + + 315 + + + CPU used by vCenter Server in privileged mode + priviledgedcpuusage + + + + vCenter resource usage information + vcResources + + + + Percentage + percent + + average + rate + 1 + 1 + + + 316 + + + Object counts in vCenter Server + scoreboard + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 317 + + + Object counts in vCenter Server + scoreboard + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 318 + + + Object counts in vCenter Server + scoreboard + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 3 + 3 + + + 319 + + + The statistics of client sessions connected to vCenter Server + sessionstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 320 + + + The statistics of client sessions connected to vCenter Server + sessionstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 321 + + + The statistics of client sessions connected to vCenter Server + sessionstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 322 + + + Number of systems calls made per second on the system where vCenter Server is running + syscallsrate + + + + vCenter resource usage information + vcResources + + + + Number + number + + average + rate + 1 + 1 + + + 323 + + + The statistics of vCenter Server as a running system such as thread statistics and heap statistics + systemstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 324 + + + The statistics of vCenter Server as a running system such as thread statistics and heap statistics + systemstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 325 + + + The statistics of vCenter Server as a running system such as thread statistics and heap statistics + systemstats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 326 + + + CPU used by vCenter Server in user mode + usercpuusage + + + + vCenter resource usage information + vcResources + + + + Percentage + percent + + average + rate + 1 + 1 + + + 327 + + + vCenter service statistics such as events, alarms, and tasks + vcservicestats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + maximum + absolute + 4 + 4 + + + 328 + + + vCenter service statistics such as events, alarms, and tasks + vcservicestats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + minimum + absolute + 4 + 4 + + + 329 + + + vCenter service statistics such as events, alarms, and tasks + vcservicestats + + + + vCenter debugging information + vcDebugInfo + + + + Number + number + + summation + absolute + 1 + 1 + + + 330 + + + Virtual memory used by vCenter Server + virtualmemusage + + + + vCenter resource usage information + vcResources + + + + Kilobyte + kiloBytes + + average + absolute + 1 + 1 + + + 331 + + + Average number of outstanding read requests to the virtual disk during the collection interval + readOIO + + + + Virtual disk + virtualDisk + + + + Number + number + + latest + absolute + 2 + 2 + + + 332 + + + Average number of outstanding write requests to the virtual disk during the collection interval + writeOIO + + + + Virtual disk + virtualDisk + + + + Number + number + + latest + absolute + 2 + 2 + + + 333 + + + Storage DRS virtual disk metric for the read workload model + readLoadMetric + + + + Virtual disk + virtualDisk + + + + Number + number + + latest + absolute + 2 + 2 + + + 334 + + + Storage DRS virtual disk metric for the write workload model + writeLoadMetric + + + + Virtual disk + virtualDisk + + + + Number + number + + latest + absolute + 2 + 2 + + + 335 + + + CPU active average over 1 minute + actav1 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 336 + + + Storage DRS datastore bytes read + datastoreReadBytes + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 2 + 2 + + + 337 + + + Storage DRS datastore bytes written + datastoreWriteBytes + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 2 + 2 + + + 338 + + + Storage DRS datastore read I/O rate + datastoreReadIops + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 1 + 3 + + + 339 + + + Storage DRS datastore write I/O rate + datastoreWriteIops + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 1 + 3 + + + 340 + + + Storage DRS datastore outstanding read requests + datastoreReadOIO + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 1 + 3 + + + 341 + + + Storage DRS datastore outstanding write requests + datastoreWriteOIO + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 1 + 3 + + + 342 + + + Storage DRS datastore normalized read latency + datastoreNormalReadLatency + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 2 + 2 + + + 343 + + + Storage DRS datastore normalized write latency + datastoreNormalWriteLatency + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 2 + 2 + + + 344 + + + Storage DRS datastore metric for read workload model + datastoreReadLoadMetric + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 4 + 4 + + + 345 + + + Storage DRS datastore metric for write workload model + datastoreWriteLoadMetric + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 4 + 4 + + + 346 + + + The average datastore latency as seen by virtual machines + datastoreVMObservedLatency + + + + Datastore + datastore + + + + Microsecond + microsecond + + latest + absolute + 1 + 3 + + + 401 + + + Number of SCSI reservation conflicts for the LUN as a percent of total commands during the collection interval + scsiReservationCnflctsPct + + + + Disk + disk + + + + Percentage + percent + + average + rate + 4 + 4 + + + 402 + + + The number of I/Os that have been issued but have not yet completed + outstandingIOs + + + + Storage adapter + storageAdapter + + + + Number + number + + latest + absolute + 4 + 4 + + + 403 + + + The current number of I/Os that are waiting to be issued + queued + + + + Storage adapter + storageAdapter + + + + Number + number + + latest + absolute + 4 + 4 + + + 404 + + + The maximum number of I/Os that can be outstanding at a given time + queueDepth + + + + Storage adapter + storageAdapter + + + + Number + number + + latest + absolute + 4 + 4 + + + 405 + + + CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading) + utilization + + + + CPU + cpu + + + + Percentage + percent + + average + rate + 2 + 3 + + + 406 + + + The number of virtual processors provisioned to the entity + corecount.provisioned + + + + CPU + cpu + + + + Number + number + + latest + absolute + 4 + 4 + + + 407 + + + The amount of L3 cache the VM uses + cache.l3.occupancy + + + + CPU + cpu + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 408 + + + The number of virtual processors running on the host + corecount.usage + + + + CPU + cpu + + + + Number + number + + latest + absolute + 4 + 4 + + + 409 + + + CPU load average over the past 1 minute, sampled on every 6 seconds + load.avg1min + + + + CPU + cpu + + + + Percentage + percent + + latest + absolute + 4 + 4 + + + 410 + + + CPU load average over the past 5 minutes, sampled on every 6 seconds + load.avg5min + + + + CPU + cpu + + + + Percentage + percent + + latest + absolute + 4 + 4 + + + 411 + + + CPU load average over the past 15 minutes, sampled on every 6 seconds + load.avg15min + + + + CPU + cpu + + + + Percentage + percent + + latest + absolute + 4 + 4 + + + 412 + + + Total amount of memory available to the host + capacity.provisioned + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 413 + + + Percent of memory that has been reserved either through VMkernel use, by userworlds or due to VM memory reservations + reservedCapacityPct + + + + Memory + mem + + + + Percentage + percent + + latest + absolute + 4 + 4 + + + 414 + + + Ratio of total requested memory and the managed memory minus 1 over the past 1 minute + overcommit.avg1min + + + + Memory + mem + + + + Number + number + + latest + absolute + 4 + 4 + + + 415 + + + Ratio of total requested memory and the managed memory minus 1 over the past 5 minutes + overcommit.avg5min + + + + Memory + mem + + + + Number + number + + latest + absolute + 4 + 4 + + + 416 + + + Ratio of total requested memory and the managed memory minus 1 over the past 15 minutes + overcommit.avg15min + + + + Memory + mem + + + + Number + number + + latest + absolute + 4 + 4 + + + 417 + + + Total amount of machine memory on the ESXi host + physical.total + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 418 + + + Amount of machine memory being used by everything other than VMkernel + physical.user + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 419 + + + Amount of machine memory that is free on the ESXi host + physical.free + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 420 + + + Total amount of machine memory managed by VMkernel + kernel.managed + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 421 + + + Mininum amount of machine memory that VMkernel likes to keep free + kernel.minfree + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 422 + + + Amount of machine memory that is currently unreserved + kernel.unreserved + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 423 + + + Amount of physical memory that is being shared + pshare.shared + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 424 + + + Amount of machine memory that is common across World(s) + pshare.common + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 425 + + + Amount of machine memory saved due to page-sharing + pshare.sharedSave + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 426 + + + Current swap usage + swap.current + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 427 + + + Where ESXi expects the reclaimed memory using swapping and compression to be + swap.target + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 428 + + + Rate at which memory is swapped in by ESXi from disk + swap.readrate + + + + Memory + mem + + + + Megabytes per second + megaBytesPerSecond + + average + rate + 4 + 4 + + + 429 + + + Rate at which memory is swapped to disk by the ESXi + swap.writerate + + + + Memory + mem + + + + Megabytes per second + megaBytesPerSecond + + average + rate + 4 + 4 + + + 430 + + + Total compressed physical memory + zip.zipped + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 431 + + + Saved memory by compression + zip.saved + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 432 + + + Total amount of physical memory reclaimed using the vmmemctl modules + memctl.current + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 433 + + + Total amount of physical memory ESXi would like to reclaim using the vmmemctl modules + memctl.target + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 434 + + + Maximum amount of physical memory ESXi can reclaim using the vmmemctl modules + memctl.max + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 455 + + + CPU time spent waiting for swap-in + swapwait + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 3 + 3 + + + 456 + + + CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading) + utilization + + + + CPU + cpu + + + + Percentage + percent + + none + rate + 4 + 4 + + + 457 + + + CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading) + utilization + + + + CPU + cpu + + + + Percentage + percent + + maximum + rate + 4 + 4 + + + 458 + + + CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading) + utilization + + + + CPU + cpu + + + + Percentage + percent + + minimum + rate + 4 + 4 + + + 459 + + + CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized) + coreUtilization + + + + CPU + cpu + + + + Percentage + percent + + none + rate + 4 + 4 + + + 460 + + + CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized) + coreUtilization + + + + CPU + cpu + + + + Percentage + percent + + average + rate + 2 + 3 + + + 461 + + + CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized) + coreUtilization + + + + CPU + cpu + + + + Percentage + percent + + maximum + rate + 4 + 4 + + + 462 + + + CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized) + coreUtilization + + + + CPU + cpu + + + + Percentage + percent + + minimum + rate + 4 + 4 + + + 463 + + + Total CPU capacity reserved by and available for virtual machines + totalCapacity + + + + CPU + cpu + + + + Megahertz + megaHertz + + average + absolute + 2 + 3 + + + 464 + + + Percent of time the virtual machine is unable to run because it is contending for access to the physical CPU(s) + latency + + + + CPU + cpu + + + + Percentage + percent + + average + rate + 2 + 3 + + + 465 + + + CPU resources devoted by the ESX scheduler + entitlement + + + + CPU + cpu + + + + Megahertz + megaHertz + + latest + absolute + 2 + 3 + + + 466 + + + The amount of CPU resources a virtual machine would use if there were no CPU contention or CPU limit + demand + + + + CPU + cpu + + + + Megahertz + megaHertz + + average + absolute + 2 + 3 + + + 467 + + + Time the virtual machine is ready to run, but is unable to run due to co-scheduling constraints + costop + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 2 + 3 + + + 468 + + + Time the virtual machine is ready to run, but is not run due to maxing out its CPU limit setting + maxlimited + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 2 + 3 + + + 469 + + + Time the virtual machine was interrupted to perform system services on behalf of itself or other virtual machines + overlap + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 3 + 3 + + + 470 + + + Time the virtual machine is scheduled to run + run + + + + CPU + cpu + + + + Millisecond + millisecond + + summation + delta + 2 + 3 + + + 471 + + + CPU resource entitlement to CPU demand ratio (in percents) + demandEntitlementRatio + + + + CPU + cpu + + + + Percentage + percent + + latest + absolute + 4 + 4 + + + 472 + + + Percentage of time that the virtual machine was ready, but could not get scheduled to run on the physical CPU + readiness + + + + CPU + cpu + + + + Percentage + percent + + average + rate + 4 + 4 + + + 473 + + + Virtual CPU usage as a percentage during the interval + usage.vcpus + + + + CPU + cpu + + + + Percentage + percent + + average + rate + 4 + 4 + + + 474 + + + Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter + swapin + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 475 + + + Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter + swapin + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 476 + + + Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter + swapin + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 477 + + + Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter + swapin + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 478 + + + Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on. + swapout + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 479 + + + Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on. + swapout + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 480 + + + Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on. + swapout + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 481 + + + Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on. + swapout + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 482 + + + Amount of host physical memory consumed by VMkernel + sysUsage + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 483 + + + Amount of host physical memory consumed by VMkernel + sysUsage + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 484 + + + Amount of host physical memory consumed by VMkernel + sysUsage + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 485 + + + Amount of host physical memory consumed by VMkernel + sysUsage + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 486 + + + Amount of guest physical memory that is being actively written by guest. Activeness is estimated by ESXi + activewrite + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 487 + + + Host physical memory reserved by ESXi, for its data structures, for running the virtual machine + overheadMax + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 488 + + + Total reservation, available and consumed, for powered-on virtual machines + totalCapacity + + + + Memory + mem + + + + Megabyte + megaBytes + + average + absolute + 2 + 3 + + + 489 + + + Amount of guest physical memory pages compressed by ESXi + zipped + + + + Memory + mem + + + + Kilobyte + kiloBytes + + latest + absolute + 2 + 3 + + + 490 + + + Host physical memory, reclaimed from a virtual machine, by memory compression. This value is less than the value of 'Compressed' memory + zipSaved + + + + Memory + mem + + + + Kilobyte + kiloBytes + + latest + absolute + 2 + 3 + + + 491 + + + Percentage of time the virtual machine spent waiting to swap in or decompress guest physical memory + latency + + + + Memory + mem + + + + Percentage + percent + + average + absolute + 2 + 3 + + + 492 + + + Amount of host physical memory the virtual machine deserves, as determined by ESXi + entitlement + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 493 + + + Threshold of free host physical memory below which ESXi will begin actively reclaiming memory from virtual machines by swapping, compression and ballooning + lowfreethreshold + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 2 + 3 + + + 494 + + + Storage space consumed on the host swap cache for storing swapped guest physical memory pages + llSwapUsed + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 495 + + + Rate at which guest physical memory is swapped in from the host swap cache + llSwapInRate + + + + Memory + mem + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 496 + + + Rate at which guest physical memory is swapped out to the host swap cache + llSwapOutRate + + + + Memory + mem + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 497 + + + Estimate of the host physical memory, from Overhead consumed, that is actively read or written to by ESXi + overheadTouched + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 498 + + + Storage space consumed on the host swap cache for storing swapped guest physical memory pages + llSwapUsed + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 499 + + + Storage space consumed on the host swap cache for storing swapped guest physical memory pages + llSwapUsed + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 500 + + + Storage space consumed on the host swap cache for storing swapped guest physical memory pages + llSwapUsed + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 501 + + + Amount of guest physical memory swapped in from host cache + llSwapIn + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 502 + + + Amount of guest physical memory swapped in from host cache + llSwapIn + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 503 + + + Amount of guest physical memory swapped in from host cache + llSwapIn + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 504 + + + Amount of guest physical memory swapped in from host cache + llSwapIn + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 505 + + + Amount of guest physical memory swapped out to the host swap cache + llSwapOut + + + + Memory + mem + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 506 + + + Amount of guest physical memory swapped out to the host swap cache + llSwapOut + + + + Memory + mem + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 507 + + + Amount of guest physical memory swapped out to the host swap cache + llSwapOut + + + + Memory + mem + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 508 + + + Amount of guest physical memory swapped out to the host swap cache + llSwapOut + + + + Memory + mem + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 509 + + + Space used for holding VMFS Pointer Blocks in memory + vmfs.pbc.size + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 510 + + + Maximum size the VMFS Pointer Block Cache can grow to + vmfs.pbc.sizeMax + + + + Memory + mem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 511 + + + Amount of file blocks whose addresses are cached in the VMFS PB Cache + vmfs.pbc.workingSet + + + + Memory + mem + + + + Terabyte + teraBytes + + latest + absolute + 4 + 4 + + + 512 + + + Maximum amount of file blocks whose addresses are cached in the VMFS PB Cache + vmfs.pbc.workingSetMax + + + + Memory + mem + + + + Terabyte + teraBytes + + latest + absolute + 4 + 4 + + + 513 + + + Amount of VMFS heap used by the VMFS PB Cache + vmfs.pbc.overhead + + + + Memory + mem + + + + Kilobyte + kiloBytes + + latest + absolute + 4 + 4 + + + 514 + + + Trailing average of the ratio of capacity misses to compulsory misses for the VMFS PB Cache + vmfs.pbc.capMissRatio + + + + Memory + mem + + + + Percentage + percent + + latest + absolute + 4 + 4 + + + 515 + + + Number of SCSI commands issued during the collection interval + commands + + + + Disk + disk + + + + Number + number + + summation + delta + 2 + 3 + + + 516 + + + Average amount of time, in milliseconds, to read from the physical device + deviceReadLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 517 + + + Average amount of time, in milliseconds, spent by VMkernel to process each SCSI read command + kernelReadLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 518 + + + Average amount of time taken during the collection interval to process a SCSI read command issued from the guest OS to the virtual machine + totalReadLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 519 + + + Average amount of time spent in the VMkernel queue, per SCSI read command, during the collection interval + queueReadLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 520 + + + Average amount of time, in milliseconds, to write to the physical device + deviceWriteLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 521 + + + Average amount of time, in milliseconds, spent by VMkernel to process each SCSI write command + kernelWriteLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 522 + + + Average amount of time taken during the collection interval to process a SCSI write command issued by the guest OS to the virtual machine + totalWriteLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 523 + + + Average amount of time spent in the VMkernel queue, per SCSI write command, during the collection interval + queueWriteLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 524 + + + Average amount of time, in milliseconds, to complete a SCSI command from the physical device + deviceLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 1 + 3 + + + 525 + + + Average amount of time, in milliseconds, spent by VMkernel to process each SCSI command + kernelLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 526 + + + Average amount of time spent in the VMkernel queue, per SCSI command, during the collection interval + queueLatency + + + + Disk + disk + + + + Millisecond + millisecond + + average + absolute + 2 + 3 + + + 527 + + + Maximum queue depth + maxQueueDepth + + + + Disk + disk + + + + Number + number + + average + absolute + 1 + 3 + + + 528 + + + Average number of SCSI commands issued per second during the collection interval + commandsAveraged + + + + Disk + disk + + + + Number + number + + average + rate + 2 + 3 + + + 529 + + + Number of receives dropped + droppedRx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 530 + + + Number of transmits dropped + droppedTx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 531 + + + Average amount of data received per second + bytesRx + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 532 + + + Average amount of data transmitted per second + bytesTx + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 2 + 3 + + + 533 + + + Number of broadcast packets received during the sampling interval + broadcastRx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 534 + + + Number of broadcast packets transmitted during the sampling interval + broadcastTx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 535 + + + Number of multicast packets received during the sampling interval + multicastRx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 536 + + + Number of multicast packets transmitted during the sampling interval + multicastTx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 537 + + + Number of packets with errors received during the sampling interval + errorsRx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 538 + + + Number of packets with errors transmitted during the sampling interval + errorsTx + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 539 + + + Number of frames with unknown protocol received during the sampling interval + unknownProtos + + + + Network + net + + + + Number + number + + summation + delta + 2 + 3 + + + 540 + + + pnicBytesRx + pnicBytesRx + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 541 + + + pnicBytesTx + pnicBytesTx + + + + Network + net + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 542 + + + Number of heartbeats issued per virtual machine during the interval + heartbeat + + + + System + sys + + + + Number + number + + latest + absolute + 4 + 4 + + + 543 + + + Amount of disk space usage for each mount point + diskUsage + + + + System + sys + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 544 + + + Amount of CPU used by the Service Console and other applications during the interval + resourceCpuUsage + + + + System + sys + + + + Megahertz + megaHertz + + none + rate + 4 + 4 + + + 545 + + + Amount of CPU used by the Service Console and other applications during the interval + resourceCpuUsage + + + + System + sys + + + + Megahertz + megaHertz + + average + rate + 3 + 3 + + + 546 + + + Amount of CPU used by the Service Console and other applications during the interval + resourceCpuUsage + + + + System + sys + + + + Megahertz + megaHertz + + maximum + rate + 4 + 4 + + + 547 + + + Amount of CPU used by the Service Console and other applications during the interval + resourceCpuUsage + + + + System + sys + + + + Megahertz + megaHertz + + minimum + rate + 4 + 4 + + + 548 + + + Memory touched by the system resource group + resourceMemTouched + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 3 + 3 + + + 549 + + + Memory mapped by the system resource group + resourceMemMapped + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 3 + 3 + + + 550 + + + Memory saved due to sharing by the system resource group + resourceMemShared + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 3 + 3 + + + 551 + + + Memory swapped out by the system resource group + resourceMemSwapped + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 3 + 3 + + + 552 + + + Overhead memory consumed by the system resource group + resourceMemOverhead + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 3 + 3 + + + 553 + + + Memory shared by the system resource group + resourceMemCow + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 3 + 3 + + + 554 + + + Zero filled memory used by the system resource group + resourceMemZero + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 3 + 3 + + + 555 + + + CPU running average over 1 minute of the system resource group + resourceCpuRun1 + + + + System + sys + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 556 + + + CPU active average over 1 minute of the system resource group + resourceCpuAct1 + + + + System + sys + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 557 + + + CPU maximum limited over 1 minute of the system resource group + resourceCpuMaxLimited1 + + + + System + sys + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 558 + + + CPU running average over 5 minutes of the system resource group + resourceCpuRun5 + + + + System + sys + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 559 + + + CPU active average over 5 minutes of the system resource group + resourceCpuAct5 + + + + System + sys + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 560 + + + CPU maximum limited over 5 minutes of the system resource group + resourceCpuMaxLimited5 + + + + System + sys + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 561 + + + CPU allocation reservation (in MHz) of the system resource group + resourceCpuAllocMin + + + + System + sys + + + + Megahertz + megaHertz + + latest + absolute + 3 + 3 + + + 562 + + + CPU allocation limit (in MHz) of the system resource group + resourceCpuAllocMax + + + + System + sys + + + + Megahertz + megaHertz + + latest + absolute + 3 + 3 + + + 563 + + + CPU allocation shares of the system resource group + resourceCpuAllocShares + + + + System + sys + + + + Number + number + + latest + absolute + 3 + 3 + + + 564 + + + Memory allocation reservation (in KB) of the system resource group + resourceMemAllocMin + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 3 + 3 + + + 565 + + + Memory allocation limit (in KB) of the system resource group + resourceMemAllocMax + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 3 + 3 + + + 566 + + + Memory allocation shares of the system resource group + resourceMemAllocShares + + + + System + sys + + + + Number + number + + latest + absolute + 3 + 3 + + + 567 + + + Total time elapsed, in seconds, since last operating system boot-up + osUptime + + + + System + sys + + + + Second + second + + latest + absolute + 4 + 4 + + + 568 + + + Memory consumed by the system resource group + resourceMemConsumed + + + + System + sys + + + + Kilobyte + kiloBytes + + latest + absolute + 4 + 4 + + + 569 + + + Number of file descriptors used by the system resource group + resourceFdUsage + + + + System + sys + + + + Number + number + + latest + absolute + 4 + 4 + + + 570 + + + CPU active peak over 1 minute + actpk1 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 571 + + + CPU running average over 1 minute + runav1 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 572 + + + CPU active average over 5 minutes + actav5 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 573 + + + CPU active peak over 5 minutes + actpk5 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 574 + + + CPU running average over 5 minutes + runav5 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 575 + + + CPU active average over 15 minutes + actav15 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 576 + + + CPU active peak over 15 minutes + actpk15 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 577 + + + CPU running average over 15 minutes + runav15 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 578 + + + CPU running peak over 1 minute + runpk1 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 579 + + + Amount of CPU resources over the limit that were refused, average over 1 minute + maxLimited1 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 580 + + + CPU running peak over 5 minutes + runpk5 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 581 + + + Amount of CPU resources over the limit that were refused, average over 5 minutes + maxLimited5 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 582 + + + CPU running peak over 15 minutes + runpk15 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 583 + + + Amount of CPU resources over the limit that were refused, average over 15 minutes + maxLimited15 + + + + Resource group CPU + rescpu + + + + Percentage + percent + + latest + absolute + 3 + 3 + + + 584 + + + Group CPU sample count + sampleCount + + + + Resource group CPU + rescpu + + + + Number + number + + latest + absolute + 3 + 3 + + + 585 + + + Group CPU sample period + samplePeriod + + + + Resource group CPU + rescpu + + + + Millisecond + millisecond + + latest + absolute + 3 + 3 + + + 586 + + + Amount of total configured memory that is available for use + memUsed + + + + Management agent + managementAgent + + + + Kilobyte + kiloBytes + + average + absolute + 3 + 3 + + + 587 + + + Sum of the memory swapped by all powered-on virtual machines on the host + swapUsed + + + + Management agent + managementAgent + + + + Kilobyte + kiloBytes + + average + absolute + 3 + 3 + + + 588 + + + Amount of Service Console CPU usage + cpuUsage + + + + Management agent + managementAgent + + + + Megahertz + megaHertz + + average + rate + 3 + 3 + + + 589 + + + Average number of commands issued per second on the storage path during the collection interval + commandsAveraged + + + + Storage path + storagePath + + + + Number + number + + average + rate + 3 + 3 + + + 590 + + + Average number of read commands issued per second on the storage path during the collection interval + numberReadAveraged + + + + Storage path + storagePath + + + + Number + number + + average + rate + 3 + 3 + + + 591 + + + Average number of write commands issued per second on the storage path during the collection interval + numberWriteAveraged + + + + Storage path + storagePath + + + + Number + number + + average + rate + 3 + 3 + + + 592 + + + Rate of reading data on the storage path + read + + + + Storage path + storagePath + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 593 + + + Rate of writing data on the storage path + write + + + + Storage path + storagePath + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 3 + 3 + + + 594 + + + The average time a read issued on the storage path takes + totalReadLatency + + + + Storage path + storagePath + + + + Millisecond + millisecond + + average + absolute + 3 + 3 + + + 595 + + + The average time a write issued on the storage path takes + totalWriteLatency + + + + Storage path + storagePath + + + + Millisecond + millisecond + + average + absolute + 3 + 3 + + + 596 + + + Average read request size in bytes + readIOSize + + + + Virtual disk + virtualDisk + + + + Number + number + + latest + absolute + 4 + 4 + + + 597 + + + Average write request size in bytes + writeIOSize + + + + Virtual disk + virtualDisk + + + + Number + number + + latest + absolute + 4 + 4 + + + 598 + + + Number of seeks during the interval that were less than 64 LBNs apart + smallSeeks + + + + Virtual disk + virtualDisk + + + + Number + number + + latest + absolute + 4 + 4 + + + 599 + + + Number of seeks during the interval that were between 64 and 8192 LBNs apart + mediumSeeks + + + + Virtual disk + virtualDisk + + + + Number + number + + latest + absolute + 4 + 4 + + + 600 + + + Number of seeks during the interval that were greater than 8192 LBNs apart + largeSeeks + + + + Virtual disk + virtualDisk + + + + Number + number + + latest + absolute + 4 + 4 + + + 601 + + + Read latency in microseconds + readLatencyUS + + + + Virtual disk + virtualDisk + + + + Microsecond + microsecond + + latest + absolute + 4 + 4 + + + 602 + + + Write latency in microseconds + writeLatencyUS + + + + Virtual disk + virtualDisk + + + + Microsecond + microsecond + + latest + absolute + 4 + 4 + + + 603 + + + Storage I/O Control datastore maximum queue depth + datastoreMaxQueueDepth + + + + Datastore + datastore + + + + Number + number + + latest + absolute + 1 + 3 + + + 604 + + + unmapSize + unmapSize + + + + Datastore + datastore + + + + Megabyte + megaBytes + + summation + delta + 4 + 4 + + + 605 + + + unmapIOs + unmapIOs + + + + Datastore + datastore + + + + Number + number + + summation + delta + 4 + 4 + + + 606 + + + Current number of replicated virtual machines + hbrNumVms + + + + vSphere Replication + hbr + + + + Number + number + + average + absolute + 4 + 4 + + + 607 + + + Average amount of data received per second + hbrNetRx + + + + vSphere Replication + hbr + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 608 + + + Average amount of data transmitted per second + hbrNetTx + + + + vSphere Replication + hbr + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 609 + + + Number of caches controlled by the virtual flash module + numActiveVMDKs + + + + Virtual flash module related statistical values + vflashModule + + + + Number + number + + latest + absolute + 4 + 4 + + + 610 + + + Read IOPS + readIops + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Number + number + + average + rate + 4 + 4 + + + 611 + + + Read throughput in kBps + readThroughput + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 612 + + + Average read latency in ms + readAvgLatency + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Millisecond + millisecond + + average + absolute + 4 + 4 + + + 613 + + + Max read latency in ms + readMaxLatency + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Millisecond + millisecond + + latest + absolute + 4 + 4 + + + 614 + + + Cache hit rate percentage + readCacheHitRate + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Percentage + percent + + latest + absolute + 4 + 4 + + + 615 + + + Read congestion + readCongestion + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Number + number + + average + rate + 4 + 4 + + + 616 + + + Write IOPS + writeIops + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Number + number + + average + rate + 4 + 4 + + + 617 + + + Write throughput in kBps + writeThroughput + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 618 + + + Average write latency in ms + writeAvgLatency + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Millisecond + millisecond + + average + absolute + 4 + 4 + + + 619 + + + Max write latency in ms + writeMaxLatency + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Millisecond + millisecond + + latest + absolute + 4 + 4 + + + 620 + + + Write congestion + writeCongestion + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Number + number + + average + rate + 4 + 4 + + + 621 + + + Recovery write IOPS + recoveryWriteIops + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Number + number + + average + rate + 4 + 4 + + + 622 + + + Recovery write through-put in kBps + recoveryWriteThroughput + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Kilobytes per second + kiloBytesPerSecond + + average + rate + 4 + 4 + + + 623 + + + Average recovery write latency in ms + recoveryWriteAvgLatency + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Millisecond + millisecond + + average + absolute + 4 + 4 + + + 624 + + + Max recovery write latency in ms + recoveryWriteMaxLatency + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Millisecond + millisecond + + latest + absolute + 4 + 4 + + + 625 + + + Recovery write congestion + recoveryWriteCongestion + + + + vSAN DOM object related statistical values + vsanDomObj + + + + Number + number + + average + rate + 4 + 4 + + + 626 + + + The utilization of a GPU in percentages + utilization + + + + GPU + gpu + + + + Percentage + percent + + none + absolute + 4 + 4 + + + 627 + + + The utilization of a GPU in percentages + utilization + + + + GPU + gpu + + + + Percentage + percent + + average + absolute + 4 + 4 + + + 628 + + + The utilization of a GPU in percentages + utilization + + + + GPU + gpu + + + + Percentage + percent + + maximum + absolute + 4 + 4 + + + 629 + + + The utilization of a GPU in percentages + utilization + + + + GPU + gpu + + + + Percentage + percent + + minimum + absolute + 4 + 4 + + + 630 + + + The amount of GPU memory used in kilobytes + mem.used + + + + GPU + gpu + + + + Kilobyte + kiloBytes + + none + absolute + 4 + 4 + + + 631 + + + The amount of GPU memory used in kilobytes + mem.used + + + + GPU + gpu + + + + Kilobyte + kiloBytes + + average + absolute + 4 + 4 + + + 632 + + + The amount of GPU memory used in kilobytes + mem.used + + + + GPU + gpu + + + + Kilobyte + kiloBytes + + maximum + absolute + 4 + 4 + + + 633 + + + The amount of GPU memory used in kilobytes + mem.used + + + + GPU + gpu + + + + Kilobyte + kiloBytes + + minimum + absolute + 4 + 4 + + + 634 + + + The amount of GPU memory used in percentages of the total available + mem.usage + + + + GPU + gpu + + + + Percentage + percent + + none + absolute + 4 + 4 + + + 635 + + + The amount of GPU memory used in percentages of the total available + mem.usage + + + + GPU + gpu + + + + Percentage + percent + + average + absolute + 4 + 4 + + + 636 + + + The amount of GPU memory used in percentages of the total available + mem.usage + + + + GPU + gpu + + + + Percentage + percent + + maximum + absolute + 4 + 4 + + + 637 + + + The amount of GPU memory used in percentages of the total available + mem.usage + + + + GPU + gpu + + + + Percentage + percent + + minimum + absolute + 4 + 4 + + + 638 + + + The temperature of a GPU in degrees celsius + temperature + + + + GPU + gpu + + + + Temperature in degrees Celsius + celsius + + average + absolute + 4 + 4 + + + 639 + + + Persistent memory available reservation on a host. + available.reservation + + + + PMEM + pmem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 640 + + + Persistent memory reservation managed by DRS on a host. + drsmanaged.reservation + + + + PMEM + pmem + + + + Megabyte + megaBytes + + latest + absolute + 4 + 4 + + + 701 + + + Memory reservation health state, 2->Red, 1->Green + health.reservationState + + + + Memory + mem + + + + Number + number + + latest + absolute + 4 + 4 + + + + - + \ No newline at end of file diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/resource-pool-default-properties.xml b/receiver/vcenterreceiver/internal/mockserver/responses/resource-pool-default-properties.xml index 6af66d19e133..653a2b954e71 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/resource-pool-default-properties.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/resource-pool-default-properties.xml @@ -4,274 +4,280 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - + - resgroup-9 - - name - Resources - - - owner - domain-c8 - - - summary - - Resources - - resgroup-9 - - 252846 - true - 252846 - - 4000 - normal - - - - 2140385 - true - 2140385 - - 163840 - normal - - - - - - 930037628928 - 189414768640 - 1314275721216 - 1314275721216 - 210757484544 - 2244313350144 - - - 101439 - 18000 - 151407 - 151407 - 13791 - 252846 - - green - disabled - - - 13791 - 14440 - 40543 - 200994 - 13636 - 185343 - 150394 - 239546 - 199617 - 1 - 0 - 0 - 2191 - 1378 - 0 - - 236544 - - - - vm - - vm-1040 - - + + resgroup-9 + + name + Resources + + + owner + domain-c8 + + + summary + + Resources + + resgroup-9 + + 252846 + true + 252846 + + 4000 + normal + + + + 2140385 + true + 2140385 + + 163840 + normal + + + + + + 930037628928 + 189414768640 + 1314275721216 + 1314275721216 + 210757484544 + 2244313350144 + + + 101439 + 18000 + 151407 + 151407 + 13791 + 252846 + + green + disabled + + + 13791 + 14440 + 40543 + 200994 + 13636 + 185343 + 150394 + 239546 + 199617 + 1 + 0 + 0 + 2191 + 1378 + 0 + + 236544 + + + + vm + + vm-1040 + + + - resgroup-10 - - name - Resources - - - owner - domain-c9 - - - summary - - Resources - - resgroup-9 - - 252846 - true - 252846 - - 4000 - normal - - - - 2140385 - true - 2140385 - - 163840 - normal - - - - - - 930037628928 - 189414768640 - 1314275721216 - 1314275721216 - 210757484544 - 2244313350144 - - - 101439 - 18000 - 151407 - 151407 - 13791 - 252846 - - green - disabled - - - 13791 - 14440 - 40543 - 200994 - 13636 - 185343 - 150394 - 239546 - 199617 - 1 - 0 - 0 - 2191 - 1378 - 0 - - 236544 - - - - vm - - vm-6005 - - + + resgroup-10 + + name + Resources + + + owner + domain-c9 + + + summary + + Resources + + resgroup-9 + + 252846 + true + 252846 + + 4000 + normal + + + + 2140385 + true + 2140385 + + 163840 + normal + + + + + + 930037628928 + 189414768640 + 1314275721216 + 1314275721216 + 210757484544 + 2244313350144 + + + 101439 + 18000 + 151407 + 151407 + 13791 + 252846 + + green + disabled + + + 13791 + 14440 + 40543 + 200994 + 13636 + 185343 + 150394 + 239546 + 199617 + 1 + 0 + 0 + 2191 + 1378 + 0 + + 236544 + + + + vm + + vm-6005 + + + - resgroup-v10 - - name - v-app-1 - - - owner - domain-c8 - - - summary - - - - resgroup-v10 - - 0 - true - 1 - - 4000 - normal - - - - 0 - true - 1 - - 163840 - normal - - 0 - - disabled - - - - 930037628928 - 189414768640 - 1314275721216 - 1314275721216 - 210757484544 - 2244313350144 - - - 0 - 0 - 151407 - 151407 - 0 - 252846 - - green - disabled - - - 0 - 0 - 40543 - 200994 - 0 - 185343 - 150394 - 239546 - 199617 - 0 - 0 - 0 - 2191 - 1378 - 0 - - 236544 - - 0 - - + + resgroup-v10 + + name + v-app-1 + + + owner + domain-c8 + + + summary + - - - - - - - - started - false - false - 50219291-3ced-8caa-239a-79f84675881a - - - - vm - - vm-6004 - - + + resgroup-v10 + + 0 + true + 1 + + 4000 + normal + + + + 0 + true + 1 + + 163840 + normal + + 0 + + disabled + + + + 930037628928 + 189414768640 + 1314275721216 + 1314275721216 + 210757484544 + 2244313350144 + + + 0 + 0 + 151407 + 151407 + 0 + 252846 + + green + disabled + + + 0 + 0 + 40543 + 200994 + 0 + 185343 + 150394 + 239546 + 199617 + 0 + 0 + 0 + 2191 + 1378 + 0 + + 236544 + + 0 + + + + + + + + + + + started + false + false + 50219291-3ced-8caa-239a-79f84675881a + + + + vm + + vm-6004 + + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/retrieve-properties-empty.xml b/receiver/vcenterreceiver/internal/mockserver/responses/retrieve-properties-empty.xml index 26226f9bb581..a25a3c74c799 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/retrieve-properties-empty.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/retrieve-properties-empty.xml @@ -1,6 +1,6 @@ - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/vm-default-properties.xml b/receiver/vcenterreceiver/internal/mockserver/responses/vm-default-properties.xml index 59c5e1ccbddd..e46edc6fd3eb 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/vm-default-properties.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/vm-default-properties.xml @@ -1,271 +1,279 @@ - + - vm-1040 - - name - CentOS 7 - - - config.hardware.numCPU - 4 - - - config.instanceUuid - 5000bbe0-993e-5813-c56a-198eaa62fb61 - - - config.template - false - - - resourcePool - resgroup-9 - - - runtime.maxCpuUsage - 10372 - - - runtime.powerState - poweredOn - - - summary.config.memorySizeMB - 16384 - - - summary.quickStats.balloonedMemory - 0 - - - summary.quickStats.guestMemoryUsage - 163 - - - summary.quickStats.overallCpuUsage - 12 - - - summary.quickStats.ssdSwappedMemory - 0 - - - summary.quickStats.swappedMemory - 0 - - - summary.runtime.host - host-1002 - - - summary.storage.committed - 16311648256 - - - summary.storage.uncommitted - 258847277056 - + + vm-1040 + + name + CentOS 7 + + + config.hardware.numCPU + 4 + + + config.instanceUuid + 5000bbe0-993e-5813-c56a-198eaa62fb61 + + + config.template + false + + + resourcePool + resgroup-9 + + + runtime.maxCpuUsage + 10372 + + + runtime.powerState + poweredOn + + + summary.config.memorySizeMB + 16384 + + + summary.quickStats.balloonedMemory + 0 + + + summary.quickStats.guestMemoryUsage + 163 + + + summary.quickStats.overallCpuUsage + 12 + + + summary.quickStats.ssdSwappedMemory + 0 + + + summary.quickStats.swappedMemory + 0 + + + summary.runtime.host + host-1002 + + + summary.storage.committed + 16311648256 + + + summary.storage.uncommitted + 258847277056 + + - vm-6004 - - name - CentOS 8 - - - config.hardware.numCPU - 4 - - - config.instanceUuid - 5000bbe0-993e-5813-c56a-198eaa62fb62 - - - config.template - false - - - resourcePool - resgroup-v10 - - - runtime.maxCpuUsage - 10372 - - - runtime.powerState - poweredOn - - - summary.config.memorySizeMB - 16384 - - - summary.quickStats.balloonedMemory - 0 - - - summary.quickStats.guestMemoryUsage - 163 - - - summary.quickStats.overallCpuUsage - 12 - - - summary.quickStats.ssdSwappedMemory - 0 - - - summary.quickStats.swappedMemory - 0 - - - summary.runtime.host - host-1002 - - - summary.storage.committed - 16311648256 - - - summary.storage.uncommitted - 258847277056 - + + vm-6004 + + name + CentOS 8 + + + config.hardware.numCPU + 4 + + + config.instanceUuid + 5000bbe0-993e-5813-c56a-198eaa62fb62 + + + config.template + false + + + resourcePool + resgroup-v10 + + + runtime.maxCpuUsage + 10372 + + + runtime.powerState + poweredOn + + + summary.config.memorySizeMB + 16384 + + + summary.quickStats.balloonedMemory + 0 + + + summary.quickStats.guestMemoryUsage + 163 + + + summary.quickStats.overallCpuUsage + 12 + + + summary.quickStats.ssdSwappedMemory + 0 + + + summary.quickStats.swappedMemory + 0 + + + summary.runtime.host + host-1002 + + + summary.storage.committed + 16311648256 + + + summary.storage.uncommitted + 258847277056 + + - vm-6005 - - name - CentOS 9 - - - config.hardware.numCPU - 4 - - - config.instanceUuid - 5000bbe0-993e-5813-c56a-198eaa62fb63 - - - config.template - false - - - resourcePool - resgroup-10 - - - runtime.maxCpuUsage - 10372 - - - runtime.powerState - poweredOn - - - summary.config.memorySizeMB - 16384 - - - summary.quickStats.balloonedMemory - 0 - - - summary.quickStats.guestMemoryUsage - 163 - - - summary.quickStats.overallCpuUsage - 12 - - - summary.quickStats.ssdSwappedMemory - 0 - - - summary.quickStats.swappedMemory - 0 - - - summary.runtime.host - host-1003 - - - summary.storage.committed - 16311648256 - - - summary.storage.uncommitted - 258847277056 - + + vm-6005 + + name + CentOS 9 + + + config.hardware.numCPU + 4 + + + config.instanceUuid + 5000bbe0-993e-5813-c56a-198eaa62fb63 + + + config.template + false + + + resourcePool + resgroup-10 + + + runtime.maxCpuUsage + 10372 + + + runtime.powerState + poweredOn + + + summary.config.memorySizeMB + 16384 + + + summary.quickStats.balloonedMemory + 0 + + + summary.quickStats.guestMemoryUsage + 163 + + + summary.quickStats.overallCpuUsage + 12 + + + summary.quickStats.ssdSwappedMemory + 0 + + + summary.quickStats.swappedMemory + 0 + + + summary.runtime.host + host-1003 + + + summary.storage.committed + 16311648256 + + + summary.storage.uncommitted + 258847277056 + + - vm-template - - name - CentOS 7 Template - - - config.hardware.numCPU - 4 - - - config.instanceUuid - 5000bbe0-993e-5813-c56a-198eaa62fb64 - - - config.template - true - - - runtime.maxCpuUsage - 10372 - - - runtime.powerState - poweredOn - - - summary.config.memorySizeMB - 16384 - - - summary.quickStats.balloonedMemory - 0 - - - summary.quickStats.guestMemoryUsage - 163 - - - summary.quickStats.overallCpuUsage - 12 - - - summary.quickStats.ssdSwappedMemory - 0 - - - summary.quickStats.swappedMemory - 0 - - - summary.runtime.host - host-1002 - - - summary.storage.committed - 16311648256 - - - summary.storage.uncommitted - 258847277056 - + + vm-template + + name + CentOS 7 Template + + + config.hardware.numCPU + 4 + + + config.instanceUuid + 5000bbe0-993e-5813-c56a-198eaa62fb64 + + + config.template + true + + + runtime.maxCpuUsage + 10372 + + + runtime.powerState + poweredOn + + + summary.config.memorySizeMB + 16384 + + + summary.quickStats.balloonedMemory + 0 + + + summary.quickStats.guestMemoryUsage + 163 + + + summary.quickStats.overallCpuUsage + 12 + + + summary.quickStats.ssdSwappedMemory + 0 + + + summary.quickStats.swappedMemory + 0 + + + summary.runtime.host + host-1002 + + + summary.storage.committed + 16311648256 + + + summary.storage.uncommitted + 258847277056 + + - + diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/vm-folder-children.xml b/receiver/vcenterreceiver/internal/mockserver/responses/vm-folder-children.xml index 18a90c00f038..5e4b8e718afb 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/vm-folder-children.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/vm-folder-children.xml @@ -1,58 +1,68 @@ - + - resgroup-v10 - - name - v-app-1 - + + resgroup-v10 + + name + v-app-1 + + - vm-1040 - - name - CentOS 7 - + + vm-1040 + + name + CentOS 7 + + - vm-template - - name - CentOS 7 Template - + + vm-template + + name + CentOS 7 Template + + - group-v1034 - - childType - - Folder - VirtualMachine - VirtualApp - - - - name - HCX Management VMs - + + group-v1034 + + childType + + Folder + VirtualMachine + VirtualApp + + + + name + HCX Management VMs + + - group-v1001 - - childType - - Folder - VirtualMachine - VirtualApp - - - - name - Discovered virtual machine - + + group-v1001 + + childType + + Folder + VirtualMachine + VirtualApp + + + + name + Discovered virtual machine + + - + \ No newline at end of file diff --git a/receiver/vcenterreceiver/internal/mockserver/responses/vm-folder-parents.xml b/receiver/vcenterreceiver/internal/mockserver/responses/vm-folder-parents.xml index 1d683e80ef9f..e6b75c85ba48 100644 --- a/receiver/vcenterreceiver/internal/mockserver/responses/vm-folder-parents.xml +++ b/receiver/vcenterreceiver/internal/mockserver/responses/vm-folder-parents.xml @@ -1,36 +1,42 @@ - + - group-v4 - - name - vm - - - parent - datacenter-3 - + + group-v4 + + name + vm + + + parent + datacenter-3 + + - datacenter-3 - - name - Datacenter - - - parent - group-d1 - + + datacenter-3 + + name + Datacenter + + + parent + group-d1 + + - group-d1 - - name - Datacenters - + + group-d1 + + name + Datacenters + + - +