muninlite/plugins/uptime
Lars Kruse 44628e78cc uptime should report days, not seconds
Source: https://sourceforge.net/p/muninlite/patches/8/
Author: Craig Gallek

See patch "110-fix-uptime-days" in OpenWrt.
2019-07-19 05:54:53 +02:00

11 lines
266 B
Plaintext

config_uptime() {
echo "graph_title Uptime"
echo "graph_args --base 1000 -l 0 "
echo "graph_vlabel uptime in days"
echo "uptime.label uptime"
echo "uptime.draw AREA"
}
fetch_uptime() {
awk '{printf "uptime.value %.2f",$1/86400; print ""}' /proc/uptime
}