-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugin.json
56 lines (56 loc) · 2.06 KB
/
plugin.json
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
{
"name" : "Truesight Pulse Disk Summary Plugin",
"version" : "0.9.2",
"meterVersionRequired" : "4.2.0-611",
"unsupportedPlatforms" : [ ],
"tags" : "disk,meter",
"description" : "Scans the given device or drive and reports the percent of disk used and various disk metrics",
"icon" : "icon.png",
"command" : "boundary-meter init.lua",
"command_lua" : "boundary-meter init.lua",
"postExtract" : "",
"postExtract_lua" : "",
"ignore" : "",
"metrics" : [
"DISK_READ_BYTES_TOTAL",
"DISK_WRITE_BYTES_TOTAL",
"DISK_READS_TOTAL",
"DISK_WRITES_TOTAL",
"DISK_READS",
"DISK_WRITES",
"DISK_READ_BYTES",
"DISK_WRITE_BYTES",
"DISK_IOS",
"DISKUSE_SUMMARY"
],
"dashboards" : [
{
"name" : "Disk Summary",
"layout" : "d-w=3&d-h=2&d-pad=5&d-bg=none&d-g-DISKUSE_SUMMARY=0-0-1-1&d-g-DISK_READS=1-0-1-1-t&d-g-DISK_WRITES=1-0-1-1-b&d-g-DISK_READ_BYTES=2-0-1-1-t&d-g-DISK_WRITE_BYTES=2-0-1-1-b&d-g-DISK_READS_TOTAL=2-1-1-1-t&d-g-DISK_WRITES_TOTAL=2-1-1-1-b&d-g-DISK_READ_BYTES_TOTAL=0-1-2-1-t&d-g-DISK_WRITE_BYTES_TOTAL=0-1-2-1-b"
}
],
"paramArray" : { "itemTitle" : ["diskname", "dir", "device"], "schemaTitle" : "Endpoint"},
"paramSchema" : [
{
"title" : "Mount Point",
"name" : "dir",
"description" : "The mounted point (on Linux) to check for free space and other metrics. (either this or the Mounted device need to be set for the plugin to function properly). NOTE: Leave empty on Windows.",
"type" : "string",
"required" : false
},
{
"title" : "Device/Drive",
"name" : "device",
"description" : "The mounted device (on Linux) or drive (on Windows)to check for free space and other metrics. (either this or the Mount Point directory need to be set for the plugin to function properly)",
"type" : "string",
"required" : false
},
{
"title" : "Source",
"name" : "diskname",
"description" : "Some alias to be appended to the hostname to display in the legend for the data.",
"type" : "string",
"required" : true
}
]
}