]> nos-oignons.net Git - website.git/commitdiff
Prise en compte des relais inactifs dans le script de bande passante.
authoropi <opi@zeropi.net>
Thu, 10 Dec 2015 08:35:38 +0000 (09:35 +0100)
committeropi <opi@zeropi.net>
Thu, 10 Dec 2015 08:35:38 +0000 (09:35 +0100)
assets/bw_graphs.js

index bed5e11d56106da427e252b8bec077fa83609a6a..ebfc192d5e6aaa35b7ef7e28da7945c494dcdcbd 100644 (file)
@@ -61,6 +61,13 @@ BwDrawer.color.domain(nos_oignons_relays.map(function(r) {return r.fingerprint})
 BwDrawer.color.range(nos_oignons_relays.map(function(r) {return r.color}));
 
 BwDrawer.draw_bandwidth_graph = function(raw_data, selector, period) {
+  // Purge non running relays
+  raw_data.relays.forEach(function(r, i) {
+    if (typeof r.read_history === 'undefined' || typeof r.write_history === 'undefined') {
+      raw_data.relays.splice(i, 1);
+    }
+  });
+
   var update_period;
 
   var svg = d3.select(selector).append("svg")