mirror of
https://github.com/munin-monitoring/muninlite.git
synced 2024-11-10 21:26:33 +01:00
16 lines
431 B
Plaintext
16 lines
431 B
Plaintext
config_load() {
|
|
echo "graph_title Load average
|
|
graph_args --base 1000 -l 0
|
|
graph_vlabel load
|
|
graph_scale no
|
|
graph_category system
|
|
load.label load
|
|
load.warning 10
|
|
load.critical 120
|
|
graph_info The load average of the machine describes how many processes are in the run-queue (scheduled to run \"immediately\").
|
|
load.info Average load for the five minutes."
|
|
}
|
|
fetch_load() {
|
|
echo "load.value" "$(cut -d " " -f 2 /proc/loadavg)"
|
|
}
|