-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitor_config.json
54 lines (54 loc) · 1.67 KB
/
monitor_config.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
{
"monitor": [
{
"height": 5,
"charts": [
{
"title": "total CPU Load",
"frequency": 1,
"command": "top -bn1 | grep load | awk '{printf \"%f\", $(NF-2)/8}'",
"delimiter": "\t",
"plotSpec": "G"
}
]
},
{
"height": 0,
"charts": [
{
"title": "CPU 1-2",
"frequency": 1,
"command": "top -bn1 -1 | awk -F \",\" 'NR==3,NR==4{printf \"%f\t\", 100-$4}'",
"delimiter": "\t",
"plotSpec": "L."
},
{
"title": "CPU 3-4",
"frequency": 1,
"command": "top -bn1 -1 | awk -F \",\" 'NR==4,NR==5{printf \"%f\t\", 100-$4}'",
"delimiter": "\t",
"plotSpec": "L."
},
{
"title": "CPU 5-8",
"frequency": 1,
"command": "top -bn1 -1 | awk -F \",\" 'NR==7,NR==10{printf \"%f\t\", 100-$4}'",
"delimiter": "\t",
"plotSpec": "L..."
}
]
},
{
"height": 0,
"charts": [
{
"title": "Memory/Swap Space",
"frequency": 1,
"command": "free -m | awk 'NR==2,NR==3{printf \"%f\t\", $3/$2 }'",
"delimiter": "\t",
"plotSpec": "L."
}
]
}
]
}