Explorar el Código

fix bug in rootfs_usage

Marcus Scharf hace 7 años
padre
commit
54d1adbcdd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lib/statistics.py

+ 1 - 1
lib/statistics.py

@@ -159,7 +159,7 @@ class Statistics(Respondd):
       'clients': self.getClients(),
       'traffic': self.getTraffic(),
       'memory': self.getMemory(),
-      'rootfs': round(self.getRootFS(), 4),
+      'rootfs_usage': round(self.getRootFS(), 4),
       'idletime': float(open('/proc/uptime').read().split(' ')[0]),
       'uptime': float(open('/proc/uptime').read().split(' ')[1]),
       'loadavg': float(open('/proc/loadavg').read().split(' ')[0]),