mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-10 17:58:09 +00:00
29 lines
871 B
Lua
29 lines
871 B
Lua
--
|
|
-- (C) 2013-18 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local ts_utils = require("ts_utils_core")
|
|
local ts_dump = require "ts_5min_dump_utils"
|
|
|
|
-- ########################################################
|
|
|
|
local verbose = ntop.verboseTrace()
|
|
local when = os.time()
|
|
local config = ts_dump.getConfig()
|
|
local time_threshold = when - (when % 300) --[[ align ]] + (5 * 300) --[[ RRD heartbeat ]] - 10 --[[ safe margin ]]
|
|
|
|
local ifstats = interface.getStats()
|
|
local _ifname = ifstats.name
|
|
|
|
-- ########################################################
|
|
|
|
ts_dump.run_5min_tasks(_ifname, ifstats)
|
|
|
|
if not interface.hasHighResTs() then
|
|
ts_dump.run_5min_dump(_ifname, ifstats, config, when, time_threshold, verbose)
|
|
-- else: perform the ts_dump.run_5min_dump in minute.lua
|
|
end
|