mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 10:41:34 +00:00
Show upload speed and latency in speedtest active monitoring
This commit is contained in:
parent
7ddd7047c4
commit
9381dd6fc0
8 changed files with 106 additions and 20 deletions
|
|
@ -47,3 +47,27 @@ schema:addTag("metric")
|
|||
schema:addMetric("lookup_ms")
|
||||
schema:addMetric("connect_ms")
|
||||
schema:addMetric("other_ms")
|
||||
|
||||
-- ##############################################
|
||||
|
||||
schema = ts_utils.newSchema("am_host:upload_5mins", {
|
||||
step = 300,
|
||||
metrics_type = ts_utils.metrics.gauge,
|
||||
is_system_schema = true,
|
||||
})
|
||||
|
||||
schema:addTag("ifid")
|
||||
schema:addTag("host")
|
||||
schema:addMetric("speed")
|
||||
|
||||
-- ##############################################
|
||||
|
||||
schema = ts_utils.newSchema("am_host:latency_5mins", {
|
||||
step = 300,
|
||||
metrics_type = ts_utils.metrics.gauge,
|
||||
is_system_schema = true,
|
||||
})
|
||||
|
||||
schema:addTag("ifid")
|
||||
schema:addTag("host")
|
||||
schema:addMetric("latency")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue