-
Notifications
You must be signed in to change notification settings - Fork 0
/
presets.json
42 lines (42 loc) · 1.3 KB
/
presets.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
{
"cpu": {
"args": "--y-label='%' --title='CPU Utilization' --include=%user,%system,%iowait,%steal",
"sar": "-u"
},
"cpu100": {
"args": "--y-label='%' --title='CPU Utilization' --include=%user,%system,%iowait,%steal --y-max=100",
"sar": "-u"
},
"load_average": {
"args": "--y-label='LA/QL' --title='Load Average and Queue Length' --exclude=plist-sz",
"sar": "-q"
},
"disk_iops": {
"args": "--y-label='IOps/s' --title='Disk I/O Operations per Second' --include=tps",
"sar": "-d"
},
"disk_bytes": {
"args": "--y-label='kB/s' --title='Disk Bytes Read/Write per Second' --include=rkB/s,wkB/s",
"sar": "-d"
},
"disk_queue_size": {
"args": "--y-label='Queue Size' --title='Disk Queue Size' --include=aqu-sz",
"sar": "-d"
},
"disk_await_time": {
"args": "--y-label='Await Time (ms)' --title='Average Await Time' --include=await",
"sar": "-d"
},
"memory": {
"args": "--y-label='kB' --title='Memory Usage' --include=kbmemfree,kbmemused,kbbuffers,kbcached",
"sar": "-r"
},
"network_bytes": {
"args": "--y-label='Bytes/s' --title='Network Bytes per Second' --include=rxkB/s,txkB/s",
"sar": "-n DEV"
},
"context_switches": {
"args": "--y-label='Count/s' --title='Context Switches and Process creation'",
"sar": "-w"
}
}