-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathfields.yml
173 lines (146 loc) · 4.77 KB
/
fields.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
- name: cpu
type: group
description: >
`cpu` contains local CPU stats.
release: ga
fields:
- name: cores
type: long
description: >
The number of CPU cores present on the host. The non-normalized
percentages will have a maximum value of `100% * cores`. The
normalized percentages already take this value into account and have
a maximum value of 100%.
# Percentages
- name: user.pct
type: scaled_float
format: percent
description: >
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%.
- name: system.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in kernel space.
- name: nice.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent on low-priority processes.
- name: idle.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent idle.
- name: iowait.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in wait (on disk).
- name: irq.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent servicing and handling hardware interrupts.
- name: softirq.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent servicing and handling software interrupts.
- name: steal.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in involuntary wait by the virtual CPU while the hypervisor
was servicing another processor.
Available only on Unix.
- name: total.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in states other than Idle and IOWait.
# Normalized Percentages
- name: user.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in user space.
- name: system.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in kernel space.
- name: nice.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent on low-priority processes.
- name: idle.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent idle.
- name: iowait.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in wait (on disk).
- name: irq.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent servicing and handling hardware interrupts.
- name: softirq.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent servicing and handling software interrupts.
- name: steal.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in involuntary wait by the virtual CPU while the hypervisor
was servicing another processor.
Available only on Unix.
- name: total.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time in states other than Idle and IOWait, normalised by the number of cores.
# Ticks
- name: user.ticks
type: long
description: >
The amount of CPU time spent in user space.
- name: system.ticks
type: long
description: >
The amount of CPU time spent in kernel space.
- name: nice.ticks
type: long
description: >
The amount of CPU time spent on low-priority processes.
- name: idle.ticks
type: long
description: >
The amount of CPU time spent idle.
- name: iowait.ticks
type: long
description: >
The amount of CPU time spent in wait (on disk).
- name: irq.ticks
type: long
description: >
The amount of CPU time spent servicing and handling hardware interrupts.
- name: softirq.ticks
type: long
description: >
The amount of CPU time spent servicing and handling software interrupts.
- name: steal.ticks
type: long
description: >
The amount of CPU time spent in involuntary wait by the virtual CPU while the hypervisor
was servicing another processor.
Available only on Unix.