global rrd: Count online nodes instead of nodes in state

This commit is contained in:
Daniel Ehlers 2014-09-22 23:34:21 +02:00
parent b7a079d418
commit b570d8956f

View file

@ -30,7 +30,8 @@ class rrd:
nodes = db.get_nodes()
clientCount = sum(map(lambda d: d.clientcount, nodes))
self.globalDb.update(len(nodes), clientCount)
curtime = time.time() - 60
self.globalDb.update(len(list(filter(lambda x: x.lastseen >= curtime, nodes))), clientCount)
for node in nodes:
rrd = NodeRRD(
os.path.join(self.dbPath, str(node.id).replace(':', '') + '.rrd'),