Join interface packets and drops into a single timeseries

This commit is contained in:
emanuele-f 2020-02-27 12:09:10 +01:00
parent b8a510cd61
commit ea4f936d07
5 changed files with 6 additions and 8 deletions

View file

@ -74,9 +74,10 @@ schema:addMetric("num_flows")
-- ##############################################
schema = ts_utils.newSchema("iface:drops", {step=1, rrd_fname="drops", is_critical_ts=true})
schema = ts_utils.newSchema("iface:packets_vs_drops", {step=1, is_critical_ts=true})
schema:addTag("ifid")
schema:addMetric("packets")
schema:addMetric("drops")
-- ##############################################