Implement control over default max rate for bars

This commit is contained in:
2023-11-30 13:22:57 +01:00
parent 60af808ea0
commit acf1cf2bf4
2 changed files with 15 additions and 3 deletions

View File

@@ -60,7 +60,13 @@ const clientOptions = [
name: "metricsinterval",
type: Number,
defaultOption: 5,
description: "Sets the interval for measuring metrics. A value of 5 considers the packets within the last 5 seconds. Defaults to 5."
description: "Interval for measuring metrics. A value of 5 considers the packets within the last 5 seconds. Defaults to 5."
},
{
name: "defaultmaxrate",
type: Number,
defaultOption: 1000,
description: "Default max rate for metrics/bars."
},
];
@@ -137,7 +143,13 @@ const centerOptions = [
name: "metricsinterval",
type: Number,
defaultOption: 5,
description: "Sets the interval for measuring metrics. A value of 5 considers the packets within the last 5 seconds. Defaults to 5."
description: "Interval for measuring metrics. A value of 5 considers the packets within the last 5 seconds. Defaults to 5."
},
{
name: "defaultmaxrate",
type: Number,
defaultOption: 1000,
description: "Default max rate for metrics/bars."
},
];