Move callbacks scripts into separate tab

This commit is contained in:
emanuele-f 2019-10-04 10:46:08 +02:00
parent 7c2898abe8
commit bee1efdded
46 changed files with 237 additions and 177 deletions

View file

@ -0,0 +1,72 @@
--
-- (C) 2019 - ntop.org
--
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 alert_consts = require("alert_consts")
local do_trace = false
local config_alerts = nil
local available_modules = nil
local ifid = nil
-- The function below ia called once (#pragma once)
function setup(str_granularity)
if do_trace then print("alert.lua:setup("..str_granularity..") called\n") end
ifid = interface.getId()
local ifname = interface.setActiveInterfaceId(ifid)
-- Load the threshold checking functions
available_modules = alerts_api.load_check_modules("network", str_granularity)
config_alerts = getNetworksConfiguredAlertThresholds(ifname, str_granularity, available_modules)
end
-- #################################################################
-- The function below is called once per local network
function checkAlerts(granularity)
local info = network.getNetworkStats()
local network_key = info and info.network_key
if not network_key then return end
local network_config = config_alerts[network_key] or {}
local global_config = config_alerts["local_networks"] or {}
local has_configured_alerts = (table.len(network_config) or table.len(global_config))
local entity_info = alerts_api.networkAlertEntity(network_key)
if(has_configured_alerts) then
for _, check in pairs(available_modules) do
local config = network_config[check.key] or global_config[check.key]
if config or check.always_enabled then
check.check_function({
granularity = granularity,
alert_entity = entity_info,
entity_info = info,
alert_config = config,
check_module = check,
})
end
end
end
alerts_api.releaseEntityAlerts(entity_info, network.getExpiredAlerts(granularity2id(granularity)))
end
-- #################################################################
function releaseAlerts(granularity)
local info = network.getNetworkStats()
local network_key = info and info.network_key
if not network_key then return end
local entity_info = alerts_api.networkAlertEntity(network_key)
alerts_api.releaseEntityAlerts(entity_info, network.getAlerts(granularity))
end