-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
97 lines (97 loc) · 2.56 KB
/
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
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
93
94
95
96
97
{
"entries": [
{
"package": "cpu_load",
"name": "cpu_load",
"options": {
"interval": "5s",
"warn_threshold": 0.8,
"crit_threshold": 1.0
}
},
{
"package": "cpu_util",
"name": "cpu_util",
"options": {
"interval": "5s",
"warn_threshold": 75,
"crit_threshold": 90
}
},
{
"package": "memory",
"name": "memory",
"options": {
"interval": "5s",
"warn_threshold": 75,
"crit_threshold": 85
}
},
{
"package": "disk_usage",
"name": "disk_usage",
"options": {
"interval": "5s",
"options": {
"warn_threshold": 30,
"crit_threshold": 10,
"items": [
{
"name": "root",
"path": "/"
}
]
}
}
},
{
"package": "battery",
"name": "extBat",
"options": {
"interval": "5s",
"name": "ext bat",
"identifier": "BAT1",
"warn_threshold": 25,
"crit_threshold": 15
}
},
{
"package": "network",
"name": "network",
"options": {
"interval": "5s",
"config": {
"devices": {
"wifi": {
"name": "",
"identifier": "wlp1s0",
"wireless": {
"warn_threshold": 40,
"crit_threshold": 20
}
}
},
"preference": [
"wifi"
]
}
}
},
{
"package": "clock",
"name": "localTime",
"options": {
"format": "%a %d-%b-%y %I:%M:%S",
"color": "#FFFFFF",
"location": ""
}
}
],
"interval": "1s",
"colors": {
"color_crit": "#FF0000",
"color_warn": "#FFA500",
"color_ok": "#00FF00",
"color_general": "#FFFFFF"
}
}