do not count nodes own TT link as client

This commit is contained in:
Nils Schneider 2012-06-16 05:01:05 +02:00
parent 4581df14f1
commit 86307665fc

View file

@ -118,10 +118,10 @@ meshinfo.append("p")
.attr("id", "nodecount")
meshinfo.append("p")
.attr("id", "clientcount")
.attr("id", "gatewaycount")
meshinfo.append("p")
.attr("id", "gatewaycount")
.attr("id", "clientcount")
//cp.append("input")
// .on("keyup", function(){show_node(this.value)})
@ -343,20 +343,24 @@ function reload() {
updated_at.text(d3.time.format("%X")(new Date()))
d3.select("#nodecount")
.text((data.nodes.filter(function(d) {
var nNodes = data.nodes.filter(function(d) {
return !d.flags.client
}).length) + " Knoten")
}).length,
nGateways = data.nodes.filter(function(d) {
return d.flags.gateway
}).length,
nClients = data.nodes.filter(function(d) {
return d.flags.client
}).length
d3.select("#nodecount")
.text(nNodes + " Knoten")
d3.select("#gatewaycount")
.text((data.nodes.filter(function(d) {
return d.flags.gateway
}).length) + " Gateways")
.text(nGateways + " Gateways")
d3.select("#clientcount")
.text((data.nodes.filter(function(d) {
return d.flags.client
}).length) + " Clients")
.text("ungefähr " + (nClients - nNodes) + " Clients")
update()
})