forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
41 lines (38 loc) · 943 Bytes
/
doc.go
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
/*
Package filesystem provides a MetricSet implementation that fetches metrics
for each of the mounted file systems.
An example event looks as following:
{
"@timestamp": "2016-05-23T08:05:34.853Z",
"beat": {
"hostname": "host.example.com",
"name": "host.example.com"
},
"@metadata": {
"beat": "noindex",
"type": "doc"
},
"metricset": {
"module": "system",
"name": "filesystem",
"rtt": 115
},
"system": {
"filesystem": {
"available": 105569656832,
"device_name": "/dev/disk1",
"type": "hfs",
"files": 4294967279
"free": 105831800832,
"free_files": 4292793781,
"mount_point": "/",
"total": 249779191808,
"used": {
"bytes": 143947390976,
"pct": 0.5763
},
}
}
}
*/
package filesystem