mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 10:41:34 +00:00
Added per minute netflow timeseries (#8580)
This commit is contained in:
parent
29f989ba30
commit
48764ff843
12 changed files with 182 additions and 62 deletions
|
|
@ -624,6 +624,13 @@ function ts_dump.run_min_dump(_ifname, ifstats, when, verbose)
|
|||
if ifstats.has_seen_pods then
|
||||
ts_dump.pods_update_stats(when, ifstats, verbose)
|
||||
end
|
||||
|
||||
-- Create RRDs for flow and sFlow probes
|
||||
if (config.flow_devices_rrd_creation == "1" and ntop.isEnterpriseM() and highExporterTimeseriesResolution()) then
|
||||
package.path = dirs.installdir .. "/scripts/lua/pro/modules/timeseries/callbacks/?.lua;" .. package.path
|
||||
local exporters_timeseries = require "exporters_timeseries"
|
||||
exporters_timeseries.update_timeseries(when, ifstats, verbose, true)
|
||||
end
|
||||
|
||||
if ntop.isnEdge() and ifstats.type == "netfilter" and ifstats.netfilter then
|
||||
local st = ifstats.netfilter.nfq or {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue