System-Wide Statistics Fields
editSystem-Wide Statistics Fields
editContains system-wide statistics. These statistics are the details that you can get by running the top command on Unix systems.
load Fields
editThe system load average. The load average is the average number of jobs in the run queue.
load.load15
edittype: float
The load average over 15 minutes.
cpu Fields
editThis group contains statistics related to CPU usage.
cpu.user_p
edittype: float
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 cpu.user_p
will be 180%.
cpu.steal
edittype: int
The amount of CPU time spent in involuntary wait by the virtual CPU while the hypervisor was servicing another processor. Available only on Unix.
cpus Fields
editThis group contains cpu usage per core statistics.
cpuX Fields
editThis group contains cpu usage statistics of the core X, where 0<X<N and N is the number of cores.
cpus.cpuX.softirq
edittype: int
The amount of CPU time spent servicing and handling software interrupts on core X.
cpus.cpuX.steal
edittype: int
The amount of CPU time spent in involuntary wait by the virtual CPU while the hypervisor was servicing another processor on core X. Available only on Unix.
mem Fields
editThis group contains statistics related to the memory usage on the system.
mem.actual_used
edittype: int
Actual used memory. It is defined as the "used" memory minus the memory used for disk caches and buffers. Available only on Unix.
mem.actual_free
edittype: int
Actual available memory. It is defined as the "free" memory plus the memory used for disk caches and buffers. Available only on Unix.