mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 02:16:39 +00:00
26 lines
785 B
Lua
26 lines
785 B
Lua
--
|
|
-- (C) 2013-24 - 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
|
|
|
|
require "ntop_utils"
|
|
require "check_redis_prefs"
|
|
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 when = os.time()
|
|
local ifstats = interface.getStats()
|
|
local _ifname = ifstats.name
|
|
local verbose = ntop.verboseTrace()
|
|
|
|
ts_dump.run_5min_dump(_ifname, ifstats, when, verbose)
|
|
end
|