blob: 019d34890870f29db1f277bfdf25a595d4539bfc (
plain)
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
|
general {
colors = true
interval = 5
}
order += "cpu_usage"
order += "cpu_temperature 0"
order += "disk /"
order += "memory"
order += "tztime local"
disk "/" {
format = "Disk: %used (%percentage_used)"
}
cpu_usage {
format = "CPU: %usage"
}
cpu_temperature 0 {
format = "Temp: %degrees °C"
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon5/temp1_input"
}
memory {
format = "Memory: %used (%percentage_used)"
}
tztime local {
format = "%a %Y-%m-%d %H:%M:%S"
}
|