-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmetrics.json
92 lines (92 loc) · 2.79 KB
/
metrics.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
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
{
"DISK_READS_TOTAL" : {
"displayName": "Total Disk Reads",
"description": "The total number of disk reads at the moment",
"unit": "number",
"displayNameShort": "Total Reads",
"defaultResolutionMS": 0,
"isDisabled": 0,
"defaultAggregate": "avg"
},
"DISK_READ_BYTES_TOTAL" : {
"displayName": "Total Disk Read Bytes",
"description": "The total number of bytes read from disks at the moment",
"unit": "bytecount",
"displayNameShort": "Total Read Bytes",
"defaultResolutionMS": 0,
"isDisabled": 0,
"defaultAggregate": "avg"
},
"DISK_WRITES_TOTAL" : {
"displayName": "Total Disk Writes",
"description": "The total number of disk writes at the moment",
"unit": "number",
"displayNameShort": "Total Writes",
"defaultResolutionMS": 0,
"isDisabled": 0,
"defaultAggregate": "avg"
},
"DISK_WRITE_BYTES_TOTAL" : {
"displayName": "Total Disk Write Bytes",
"description": "The total number of bytes written to disks at the moment",
"unit": "bytecount",
"displayNameShort": "Total Write Bytes",
"defaultResolutionMS": 0,
"isDisabled": 0,
"defaultAggregate": "avg"
},
"DISK_READS" : {
"displayName": "Disk Reads",
"description": "The number of reads from the disk at the moment",
"unit": "number",
"displayNameShort": "Reads",
"defaultResolutionMS": 0,
"isDisabled": 0,
"defaultAggregate": "avg"
},
"DISK_READ_BYTES" : {
"displayName": "Disk Read Bytes",
"description": "The number of bytes read from the disk at the moment",
"unit": "bytecount",
"displayNameShort": "Read Bytes",
"defaultResolutionMS": 0,
"isDisabled": 0,
"defaultAggregate": "avg"
},
"DISK_WRITES" : {
"displayName": "Disk Writes",
"description": "The number of writes to the disk at the moment",
"unit": "number",
"displayNameShort": "Writes",
"defaultResolutionMS": 0,
"isDisabled": 0,
"defaultAggregate": "avg"
},
"DISK_WRITE_BYTES" : {
"displayName": "Disk Write Bytes",
"description": "The number of bytes written to the disk at the moment",
"unit": "bytecount",
"displayNameShort": "Write Bytes",
"defaultResolutionMS": 0,
"isDisabled": 0,
"defaultAggregate": "avg"
},
"DISK_IOS" : {
"displayName": "Disk IOs",
"description": "The number of IO per second to the disk at the moment",
"unit": "number",
"displayNameShort": "IOs",
"defaultResolutionMS": 0,
"isDisabled": 0,
"defaultAggregate": "avg"
},
"DISKUSE_SUMMARY": {
"defaultAggregate": "MAX",
"defaultResolutionMS": 1000,
"description": "For the configured disks, reports the highest used disk percent capacity",
"displayName": "Disk use percent",
"displayNameShort": "Disk use",
"isDisabled" : 0,
"unit": "percent"
}
}