You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -22,9 +22,25 @@ Learn about key host metrics displayed in the Infrastructure UI:
22
22
23
23
## Hosts metrics
24
24
25
-
| Metric | Description |
26
-
|---|---|
27
-
|**Hosts**| Number of hosts returned by your search criteria. |
25
+
<DocTablecolumns={[
26
+
{
27
+
"title": "Metric",
28
+
"width": "30%"
29
+
},
30
+
{
31
+
"title": "Description",
32
+
"width": "70%"
33
+
}
34
+
]}>
35
+
<DocRow>
36
+
<DocCell>**Hosts** </DocCell>
37
+
<DocCell>
38
+
Number of hosts returned by your search criteria.
39
+
40
+
**Field Calculation**: `count(system.cpu.cores)`
41
+
</DocCell>
42
+
</DocRow>
43
+
</DocTable>
28
44
29
45
<divid="key-metrics-cpu"></div>
30
46
@@ -33,11 +49,11 @@ Learn about key host metrics displayed in the Infrastructure UI:
33
49
<DocTablecolumns={[
34
50
{
35
51
"title": "Metric",
36
-
"width": "50%"
52
+
"width": "30%"
37
53
},
38
54
{
39
55
"title": "Description",
40
-
"width": "50%"
56
+
"width": "70%"
41
57
}
42
58
]}>
43
59
<DocRow>
@@ -46,42 +62,74 @@ Learn about key host metrics displayed in the Infrastructure UI:
46
62
Percentage of CPU time spent in states other than Idle and IOWait, normalized by the number of CPU cores. This includes both time spent on user space and kernel space.
<DocCell>The percentage of CPU time spent in involuntary wait by the virtual CPU while the hypervisor was servicing another processor. Available only on Unix.</DocCell>
103
+
<DocCell>
104
+
The percentage of CPU time spent in involuntary wait by the virtual CPU while the hypervisor was servicing another processor. Available only on Unix.
<DocCell>The percentage of CPU time spent in user space. On multi-core systems, you can have percentages that are greater than 100%. For example, if 3 cores are at 60% use, then the system.cpu.user.pct will be 180%.</DocCell>
119
+
<DocCell>
120
+
The percentage of CPU time spent in user space. On multi-core systems, you can have percentages that are greater than 100%. For example, if 3 cores are at 60% use, then the system.cpu.user.pct will be 180%.
Load average gives an indication of the number of threads that are runnable (either busy running on CPU, waiting to run, or waiting for a blocking IO operation to complete).
131
+
132
+
**Field Calculation**: `average(system.load.1)`
85
133
</DocCell>
86
134
</DocRow>
87
135
<DocRow>
@@ -90,6 +138,8 @@ Learn about key host metrics displayed in the Infrastructure UI:
90
138
5 minute load average.
91
139
92
140
Load average gives an indication of the number of threads that are runnable (either busy running on CPU, waiting to run, or waiting for a blocking IO operation to complete).
141
+
142
+
**Field Calculation**: `average(system.load.5)`
93
143
</DocCell>
94
144
</DocRow>
95
145
<DocRow>
@@ -98,6 +148,8 @@ Learn about key host metrics displayed in the Infrastructure UI:
98
148
15 minute load average.
99
149
100
150
Load average gives an indication of the number of threads that are runnable (either busy running on CPU, waiting to run, or waiting for a blocking IO operation to complete).
151
+
152
+
**Field Calculation**: `average(system.load.15)`
101
153
</DocCell>
102
154
</DocRow>
103
155
<DocRow>
@@ -110,6 +162,8 @@ Learn about key host metrics displayed in the Infrastructure UI:
110
162
100% means the 1 minute load average is equal to the number of CPU cores of the host.
111
163
112
164
Taking the example of a 32 CPU cores host, if the 1 minute load average is 32, the value reported here is 100%. If the 1 minute load average is 48, the value reported here is 150%.
<DocCell>Total available memory excluding the page cache.</DocCell>
142
-
</DocRow>
203
+
<DocCell>
204
+
Total available memory excluding the page cache.
205
+
206
+
**Field Calculation**: `system.memory.free`
207
+
</DocCell>
208
+
</DocRow>
143
209
<DocRow>
144
210
<DocCell>**Memory Total** </DocCell>
145
-
<DocCell>Total memory capacity.</DocCell>
146
-
</DocRow>
211
+
<DocCell>
212
+
Total memory capacity.
213
+
214
+
**Field Calculation**: `avg(system.memory.total)`
215
+
</DocCell>
216
+
</DocRow>
147
217
<DocRow>
148
218
<DocCell>**Memory Usage (%)** </DocCell>
149
219
<DocCell>
@@ -152,42 +222,142 @@ Learn about key host metrics displayed in the Infrastructure UI:
152
222
This includes resident memory for all processes plus memory used by the kernel structures and code apart from the page cache.
153
223
154
224
A high level indicates a situation of memory saturation for the host. For example, 100% means the main memory is entirely filled with memory that can't be reclaimed, except by swapping out.
0 commit comments