You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
241 B

  1. --- a/plugins/uptime
  2. +++ b/plugins/uptime
  3. @@ -7,5 +7,5 @@
  4. echo "uptime.cdef uptime,86400,/"
  5. }
  6. fetch_uptime() {
  7. - echo "uptime.value" $(cut -d\ -f1 /proc/uptime)
  8. + awk '{printf "uptime.value %.2f",$1/86400; print ""}' /proc/uptime
  9. }