mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-06 03:45:26 +00:00
16 lines
418 B
Lua
16 lines
418 B
Lua
--
|
|
-- (C) 2018 - ntop.org
|
|
--
|
|
|
|
local ts_utils = require "ts_utils_core"
|
|
local schema
|
|
|
|
-------------------------------------------------------
|
|
-- HOST vs HOST SCHEMAS
|
|
-------------------------------------------------------
|
|
|
|
schema = ts_utils.newSchema("host_vs_host:traffic", {step=60, metrics_type=ts_utils.metrics.counter})
|
|
schema:addTag("ifid")
|
|
schema:addTag("host1")
|
|
schema:addTag("host2")
|
|
schema:addMetric("bytes")
|