I/O metrics (#224)

* feat: Proxy Node IO stats to the FE

* chore: Sync up FE

* feat: Charts for cache sizes

* feat: All graphs are in

* chore: Remove browserlist
This commit is contained in:
Maciej Hirsz
2020-01-30 15:03:19 +01:00
committed by GitHub
parent 668065c1a8
commit 19f57d71be
14 changed files with 211 additions and 21 deletions
+4
View File
@@ -273,6 +273,10 @@ impl Handler<UpdateNode> for Chain {
if let Some(stats) = node.update_stats(interval) {
self.serializer.push(feed::NodeStatsUpdate(nid, stats));
}
if let Some(io) = node.update_io(interval) {
self.serializer.push(feed::NodeIOUpdate(nid, io));
}
}
Details::SystemNetworkState(_) => {
if let Some(raw) = raw {