mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 19:15:03 +00:00
25 lines
781 B
Lua
25 lines
781 B
Lua
--
|
|
-- (C) 2013-23 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/timeseries/?.lua;" .. package.path
|
|
|
|
local ts_dump = require "ts_5min_dump_utils"
|
|
|
|
-- ########################################################
|
|
|
|
-- @brief Execute the timeseries dump for 5 min stats
|
|
-- if no high resolution Timeseries is requested
|
|
-- otherwise run this dump into the minute dump
|
|
|
|
if not hasHighResolutionTs() then
|
|
local config = ts_dump.getConfig()
|
|
local when = os.time()
|
|
local ifstats = interface.getStats()
|
|
local _ifname = ifstats.name
|
|
local verbose = ntop.verboseTrace()
|
|
|
|
ts_dump.run_5min_dump(_ifname, ifstats, config, when, verbose)
|
|
end
|