-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathfields.yml
57 lines (55 loc) · 1.57 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
- name: filesystem
type: group
description: >
`filesystem` contains local filesystem stats.
release: ga
fields:
- name: available
type: long
format: bytes
description: >
The disk space available to an unprivileged user in bytes.
- name: device_name
type: keyword
description: >
The disk name. For example: `/dev/disk1`
- name: type
type: keyword
description: >
The disk type. For example: `ext4`. In some case for Windows OS the value will be `unavailable` as access to this information is not allowed (ex. external disks).
- name: mount_point
type: keyword
description: >
The mounting point. For example: `/`
- name: files
type: long
description: >
Total number of inodes on the system, which will be a combination of files, folders, symlinks, and devices.
- name: options
type: keyword
description: >
The options present on the filesystem mount.
- name: free
type: long
format: bytes
description: >
The disk space available in bytes.
- name: free_files
type: long
description: >
The number of free inodes in the file system.
- name: total
type: long
format: bytes
description: >
The total disk space in bytes.
- name: used.bytes
type: long
format: bytes
description: >
The used disk space in bytes.
- name: used.pct
type: scaled_float
format: percent
description: >
The percentage of used disk space.