ict icon indicating copy to clipboard operation
ict copied to clipboard

Neighbor Stats in GUI are per Segment, not per Minute

Open vuapo-eth opened this issue 5 years ago • 0 comments

To fix: Divide stats by segment interval:

const interval_ms = stats[1]["timestamp"] - stats[0]["timestamp"];
const interval_mins = interval_ms / 60000;
for(let i = 0; i < stats.length; i++) {
    stats[i]['new'] /= interval;
    stats[i]['all'] /= interval;
    // ...
}

Screenshot from 2019-03-24 19-14-00

vuapo-eth avatar Mar 24 '19 18:03 vuapo-eth