global rrd: Count online nodes instead of nodes in state
This commit is contained in:
parent
b7a079d418
commit
b570d8956f
3
rrddb.py
3
rrddb.py
|
@ -30,7 +30,8 @@ class rrd:
|
||||||
nodes = db.get_nodes()
|
nodes = db.get_nodes()
|
||||||
clientCount = sum(map(lambda d: d.clientcount, 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:
|
for node in nodes:
|
||||||
rrd = NodeRRD(
|
rrd = NodeRRD(
|
||||||
os.path.join(self.dbPath, str(node.id).replace(':', '') + '.rrd'),
|
os.path.join(self.dbPath, str(node.id).replace(':', '') + '.rrd'),
|
||||||
|
|
Loading…
Reference in a new issue