Shaped/Unshaped was incorrect

This commit is contained in:
Herbert Wolverson 2024-06-26 13:38:05 -05:00
parent fd488a16d8
commit ab240de711

View File

@ -25,7 +25,7 @@ export class ShapedUnshapedDash extends BaseDashlet{
if (msg.event === "throughput") { if (msg.event === "throughput") {
let shaped = msg.data.shaped_bps[0] + msg.data.shaped_bps[1]; let shaped = msg.data.shaped_bps[0] + msg.data.shaped_bps[1];
let unshaped = msg.data.bps[0] + msg.data.bps[1]; let unshaped = msg.data.bps[0] + msg.data.bps[1];
this.graph.update(shaped, shaped - unshaped); this.graph.update(shaped, unshaped);
} }
} }
} }