Migrates alerts to an object-oriented implementation

This commit is contained in:
Matteo Biscosi 2020-12-22 14:46:26 +01:00
parent e24ef4ef35
commit bcf2c2c1ed
95 changed files with 1923 additions and 1522 deletions

View file

@ -1,29 +0,0 @@
--
-- (C) 2019-20 - ntop.org
--
local alert_keys = require "alert_keys"
-- #######################################################
-- @brief Prepare an alert table used to generate the alert
-- @param alert_severity A severity as defined in `alert_severities`
-- @param info A generic table decoded from a JSON originated at the external alert source
-- @return A table with the alert built
local function createExternal(alert_severity, info)
local built = {
alert_severity = alert_severity,
alert_type_params = info,
}
return built
end
-- #######################################################
return {
alert_key = alert_keys.ntopng.alert_external,
i18n_title = "alerts_dashboard.external_alert",
icon = "fas fa-eye",
creator = createExternal,
}