ntopng/scripts/callbacks/system/housekeeping.lua
2020-01-08 23:52:51 +01:00

35 lines
940 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 now = os.time()
local periodicity = 3
local deadline = now + periodicity
-- Check for alerts from the datapath
checkStoreAlertsFromC(deadline-1)
-- Check for alerts to be stored to SQLite
alerts_api.checkPendingStoreAlerts(deadline)
lists_utils.checkReloadLists()
if recording_utils.isAvailable() then
recording_utils.checkExtractionJobs()
end
-- Check for alerts to be notified
processAlertNotifications(now, periodicity)