mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Implements custom timeseries
This commit is contained in:
parent
65bc5261de
commit
0cd3d5be63
4 changed files with 89 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
--
|
||||
-- (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 minute (60 sec) counter
|
||||
--
|
||||
local schema
|
||||
|
||||
schema = ts_utils.newSchema("iface:tcp_seq_errors", {step = 60})
|
||||
schema:addTag("ifid")
|
||||
schema:addMetric("packets")
|
||||
end
|
||||
|
||||
function ts_custom.iface_update_stats(when, _ifname, ifstats, verbose)
|
||||
-- THIS IS THE FUNCTION THAT IS CALLED EVERY MINUTE BY NTOPNG
|
||||
-- USE THIS TO append() TO THE TIMESERIES
|
||||
|
||||
ts_utils.append("iface:tcp_seq_errors",
|
||||
{ifid = ifstats.id,
|
||||
packets = ifstats.tcpPacketStats.retransmissions
|
||||
+ ifstats.tcpPacketStats.out_of_order
|
||||
+ ifstats.tcpPacketStats.lost},
|
||||
when, verbose)
|
||||
end
|
||||
|
||||
setup()
|
||||
return ts_custom
|
||||
Loading…
Add table
Add a link
Reference in a new issue