ntopng/scripts/callbacks/system/housekeeping.lua
2020-02-18 18:44:41 +01:00

38 lines
1,009 B
Lua

--
-- (C) 2013-20 - ntop.org
--
-- This script is used to perform activities that are low
-- priority with respect to second.lua but that require
-- near realtime execution.
-- This script is executed every 3 seconds
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
require "alert_utils"
local alerts_api = require "alerts_api"
local lists_utils = require "lists_utils"
local recording_utils = require "recording_utils"
local plugins_utils = require "plugins_utils"
local now = os.time()
local periodicity = 3
-- Check for alerts from the datapath
checkStoreAlertsFromC()
-- Check and possibly reload plugins
plugins_utils.checkReloadPlugins(now)
-- Check for alerts to be stored to SQLite
alerts_api.checkPendingStoreAlerts()
lists_utils.checkReloadLists()
if recording_utils.isAvailable() then
recording_utils.checkExtractionJobs()
end
-- Check for alerts to be notified
processAlertNotifications(now, periodicity)