mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-07 05:16:41 +00:00
30 lines
981 B
Lua
30 lines
981 B
Lua
--
|
|
-- (C) 2013-20 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
local prefs_dump_utils = require "prefs_dump_utils"
|
|
|
|
require "lua_utils"
|
|
local ts_dump = require "ts_min_dump_utils"
|
|
local ts_utils = require("ts_utils_core")
|
|
|
|
-- Check and possibly dump preferences to a file
|
|
prefs_dump_utils.check_dump_prefs_to_disk()
|
|
|
|
local ifstats = interface.getStats()
|
|
local when = os.time()
|
|
|
|
-- Dump periodic activities duration if the telementry timeseries preference is enabled
|
|
if ntop.getPref("ntopng.prefs.internals_rrd_creation") == "1" then
|
|
ts_dump.update_internals_periodic_activities_stats(when, ifstats, false)
|
|
end
|
|
|
|
if(ntop.getPref("ntopng.prefs.interface_rrd_creation") ~= "0") then
|
|
ts_utils.append("iface:alerts_stats", {ifid=getSystemInterfaceId(), engaged_alerts=ifstats.num_alerts_engaged, dropped_alerts=ifstats.num_dropped_alerts}, when)
|
|
end
|
|
|
|
-- Run minute scripts
|
|
ntop.checkSystemScriptsMin()
|