-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
fields.yml
93 lines (81 loc) · 2.49 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
- name: memory
type: group
description: >
`memory` contains local memory stats.
release: ga
fields:
- name: total
type: long
format: bytes
description: >
Total memory.
- name: used.bytes
type: long
format: bytes
description: >
Used memory.
- name: free
type: long
format: bytes
description: >
The total amount of free memory in bytes. This value does not include memory consumed by system caches and
buffers (see system.memory.actual.free).
- name: cached
type: long
format: bytes
description: >
Total Cached memory on system.
- name: used.pct
type: scaled_float
format: percent
description: >
The percentage of used memory.
- name: actual
type: group
description: >
Actual memory used and free.
fields:
- name: used.bytes
type: long
format: bytes
description: >
Actual used memory in bytes. It represents the difference between the total and the available memory. The
available memory depends on the OS. For more details, please check `system.actual.free`.
- name: free
type: long
format: bytes
description: >
Actual free memory in bytes. It is calculated based on the OS. On Linux this value will be MemAvailable from /proc/meminfo,
or calculated from free memory plus caches and buffers if /proc/meminfo is not available.
On OSX it is a sum of free memory and the inactive memory. On Windows, it is equal
to `system.memory.free`.
- name: used.pct
type: scaled_float
format: percent
description: >
The percentage of actual used memory.
- name: swap
type: group
prefix: "[float]"
description: This group contains statistics related to the swap memory usage on the system.
fields:
- name: total
type: long
format: bytes
description: >
Total swap memory.
- name: used.bytes
type: long
format: bytes
description: >
Used swap memory.
- name: free
type: long
format: bytes
description: >
Available swap memory.
- name: used.pct
type: scaled_float
format: percent
description: >
The percentage of used swap memory.