Implement metric interval control

This commit is contained in:
2023-11-30 13:21:10 +01:00
parent fc66f568ea
commit 60af808ea0
5 changed files with 44 additions and 15 deletions

View File

@@ -1,13 +1,14 @@
const { CircularBuffer } = require("./circularBuffer");
class Metric {
constructor(barName, multibar, bufferSize, refresh = true) {
constructor(barName, multibar, bufferSize, options, refresh = true) {
this.options = options;
this.multibar = multibar;
this.bar = multibar.create(0, 0);
this.bar.update(0, { name: barName });
this.bar.total = 1000;
this.maxRate = 1000;
this.bar.total = this.maxRate;
this.buffer = new CircularBuffer(bufferSize);
this.maxRate = 0;
if (refresh) {
setInterval(this.UpdateBar.bind(this), 100);
}
@@ -19,21 +20,18 @@ class Metric {
}
GetRate() {
const entries = this.buffer.toArray();
const currentTime = Date.now();
const interval = entries.length > 1 ? currentTime - entries[0].timestamp : 1;
const entries = this.buffer.toArrayRecent(this.options.metricsinterval);
const totalRX = entries.reduce((sum, entry) => sum + entry.count, 0);
return Math.round((totalRX / interval) * 100000) / 100;
return Math.round((totalRX / this.options.metricsinterval) * 100) / 100;
}
UpdateBar() {
const eps = this.GetRate();
// if (eps > this.maxRate) {
// this.bar.total = eps;
// this.maxRate = eps;
// }
if (eps > this.maxRate) {
this.bar.total = eps;
this.maxRate = eps;
}
this.bar.update(eps);
}
}