mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Reverted changes to custom timeseries
This commit is contained in:
parent
a214b5f43b
commit
462903c3b0
4 changed files with 90 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
--
|
||||
-- (C) 2019 - ntop.org
|
||||
--
|
||||
|
||||
local ts_utils = require "ts_utils_core"
|
||||
|
||||
local ts_custom = {}
|
||||
|
||||
local function setup()
|
||||
-- SCHEMAS MUST BE ADDED IN THIS FUNCTION
|
||||
--
|
||||
-- This is an example of a 5 minute (300 sec) counter
|
||||
--
|
||||
local schema
|
||||
|
||||
schema = ts_utils.newSchema("host:traffic_total", {step = 300})
|
||||
schema:addTag("ifid")
|
||||
schema:addTag("host")
|
||||
schema:addMetric("bytes")
|
||||
end
|
||||
|
||||
function ts_custom.host_update_stats(when, hostname, host, ifstats, verbose)
|
||||
-- THIS IS THE FUNCTION THAT IS CALLED EVERY 5 MINUTES BY NTOPNG
|
||||
-- USE THIS TO append() TO THE TIMESERIES
|
||||
|
||||
ts_utils.append("host:traffic_total",
|
||||
{ifid = ifstats.id, host = hostname,
|
||||
bytes = host["bytes.sent"] + host["bytes.rcvd"]},
|
||||
when, verbose)
|
||||
end
|
||||
|
||||
setup()
|
||||
return ts_custom
|
||||
Loading…
Add table
Add a link
Reference in a new issue