Hide timeseries table views if step is too small

This commit is contained in:
emanuele-f 2018-12-22 02:07:54 +01:00
parent 1a0989d3a8
commit 9bda5cf401
5 changed files with 84 additions and 9 deletions

View file

@ -168,7 +168,6 @@ schema:addMetric("as_server")
-- ##############################################
-- NOTE: not shown
schema = ts_utils.newSchema("host:l4protos", {step=300})
schema:addTag("ifid")
schema:addTag("host")
@ -192,3 +191,12 @@ schema:addTag("ifid")
schema:addTag("host")
schema:addTag("category")
schema:addMetric("bytes")
-- ##############################################
-- NOTE: these are "virtual" schema, they do not correspond to actual timeseries
schema = ts_utils.newSchema("local_senders", {step=300})
schema:addTag("ifid")
schema = ts_utils.newSchema("local_receivers", {step=300})
schema:addTag("ifid")