-
Notifications
You must be signed in to change notification settings - Fork 456
/
fields.yml
368 lines (364 loc) · 11.1 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
- name: awsfargate.task_stats
type: group
fields:
- name: cluster_name
type: keyword
description: Cluster name
- name: task_name
type: keyword
description: ECS task name
- name: identifier
type: keyword
description: |
Container identifier across tasks and clusters, which equals to container.name + '/' + container.id.
- name: task_desired_status
type: keyword
description: |
The desired status for the task from Amazon ECS.
- name: task_known_status
type: keyword
description: |
The known status for the task from Amazon ECS.
- name: cpu
type: group
fields:
- name: core.*.pct
type: scaled_float
metric_type: gauge
format: percent
description: |
Percentage of time per CPU core.
- name: core.*.norm.pct
type: scaled_float
metric_type: gauge
format: percent
description: |
Percentage of time per CPU core normalized by the number of CPU cores.
- name: core.*.ticks
type: long
metric_type: counter
description: |
CPU ticks per CPU core.
- name: kernel.pct
type: scaled_float
metric_type: gauge
format: percent
description: |
Percentage of time in kernel space.
- name: kernel.norm.pct
type: scaled_float
metric_type: gauge
format: percent
description: |
Percentage of time in kernel space normalized by the number of CPU cores.
- name: kernel.ticks
type: long
metric_type: counter
description: |
CPU ticks in kernel space.
- name: system.pct
type: scaled_float
format: percent
metric_type: gauge
description: |
Percentage of total CPU time in the system.
- name: system.norm.pct
type: scaled_float
format: percent
metric_type: gauge
description: |
Percentage of total CPU time in the system normalized by the number of CPU cores.
- name: system.ticks
type: long
metric_type: counter
description: |
CPU system ticks.
- name: user.pct
type: scaled_float
metric_type: gauge
format: percent
description: |
Percentage of time in user space.
- name: user.norm.pct
type: scaled_float
metric_type: gauge
format: percent
description: |
Percentage of time in user space normalized by the number of CPU cores.
- name: user.ticks
type: long
metric_type: counter
description: |
CPU ticks in user space.
- name: total.pct
type: scaled_float
format: percent
metric_type: gauge
description: |
Total CPU usage.
- name: total.norm.pct
type: scaled_float
metric_type: gauge
format: percent
description: |
Total CPU usage normalized by the number of CPU cores.
- name: diskio
type: group
fields:
- name: read
type: group
fields:
- name: ops
type: long
metric_type: counter
description: |
Number of reads during the life of the container
- name: bytes
type: long
format: bytes
metric_type: counter
description: |
Bytes read during the life of the container
- name: rate
type: long
metric_type: gauge
description: |
Number of current reads per second
- name: service_time
type: long
metric_type: counter
description: |
Total time to service IO requests, in nanoseconds
- name: wait_time
type: long
metric_type: counter
description: |
Total time requests spent waiting in queues for service, in nanoseconds
- name: queued
type: long
metric_type: counter
description: |
Total number of queued requests
- name: reads
type: scaled_float
metric_type: gauge
description: |
Number of current reads per second
- name: write
type: group
fields:
- name: ops
type: long
metric_type: counter
description: |
Number of writes during the life of the container
- name: bytes
type: long
format: bytes
metric_type: counter
description: |
Bytes written during the life of the container
- name: rate
type: long
metric_type: gauge
description: |
Number of current writes per second
- name: service_time
type: long
metric_type: counter
description: |
Total time to service IO requests, in nanoseconds
- name: wait_time
type: long
metric_type: counter
description: |
Total time requests spent waiting in queues for service, in nanoseconds
- name: queued
type: long
metric_type: counter
description: |
Total number of queued requests
- name: writes
type: scaled_float
metric_type: gauge
description: |
Number of current writes per second
- name: summary
type: group
fields:
- name: ops
type: long
metric_type: counter
description: |
Number of I/O operations during the life of the container
- name: bytes
type: long
metric_type: counter
format: bytes
description: |
Bytes read and written during the life of the container
- name: rate
type: long
metric_type: gauge
description: |
Number of current operations per second
- name: service_time
type: long
metric_type: counter
description: |
Total time to service IO requests, in nanoseconds
- name: wait_time
type: long
metric_type: counter
description: |
Total time requests spent waiting in queues for service, in nanoseconds
- name: queued
type: long
metric_type: counter
description: |
Total number of queued requests
- name: total
type: scaled_float
metric_type: gauge
description: |
Number of reads and writes per second
- name: memory
type: group
fields:
- name: commit
type: group
description: >
Committed bytes on Windows
fields:
- name: total
type: long
metric_type: counter
format: bytes
description: >
Total bytes
- name: peak
type: long
metric_type: counter
format: bytes
description: >
Peak committed bytes on Windows
- name: private_working_set.total
type: long
metric_type: gauge
format: bytes
description: >
Private working sets on Windows
- name: fail.count
type: scaled_float
metric_type: counter
description: |
Fail counter.
- name: limit
type: long
metric_type: gauge
format: bytes
description: |
Memory limit.
- name: rss
type: group
fields:
- name: total
type: long
metric_type: gauge
format: bytes
description: |
Total memory resident set size.
- name: pct
type: scaled_float
metric_type: gauge
format: percent
description: |
Memory resident set size percentage.
- name: usage
type: group
fields:
- name: max
type: long
metric_type: counter
format: bytes
description: |
Max memory usage.
- name: pct
type: scaled_float
metric_type: gauge
format: percent
description: |
Memory usage percentage.
- name: total
type: long
metric_type: gauge
format: bytes
description: |
Total memory usage.
- name: stats.*
type: unsigned_long
description: |
Raw memory stats from the cgroups memory.stat interface
- name: usage
type: group
fields:
- name: max
type: long
metric_type: counter
format: bytes
description: |
Max memory usage.
- name: total
type: long
metric_type: gauge
format: bytes
description: |
Total memory usage.
- name: network.*.inbound
type: group
fields:
- name: bytes
type: long
metric_type: counter
format: bytes
description: |
Total number of incoming bytes.
- name: dropped
type: long
metric_type: counter
description: |
Total number of dropped incoming packets.
- name: errors
type: long
metric_type: counter
description: |
Total errors on incoming packets.
- name: packets
type: long
metric_type: counter
description: |
Total number of incoming packets.
- name: network.*.outbound
type: group
fields:
- name: bytes
type: long
metric_type: counter
format: bytes
description: |
Total number of incoming bytes.
- name: dropped
type: long
metric_type: counter
description: |
Total number of dropped incoming packets.
- name: errors
type: long
metric_type: counter
description: |
Total errors on incoming packets.
- name: packets
type: long
metric_type: counter
description: |
Total number of incoming packets.