EVOLUTION-MANAGER
Edit File: alert_host_pool_disconnection.lua
-- -- (C) 2019-24 - ntop.org -- -- ############################################## local other_alert_keys = require "other_alert_keys" local alert_creators = require "alert_creators" -- Import the classes library. local classes = require "classes" -- Make sure to import the Superclass! local alert = require "alert" -- ############################################## local alert_host_pool_disconnection = classes.class(alert) -- ############################################## alert_host_pool_disconnection.meta = { alert_key = other_alert_keys.alert_host_pool_disconnection, i18n_title = "alerts_dashboard.host_pool_disconnection", icon = "fas fa-fw fa-sign-out", entities = {}, } -- ############################################## local function getHostPoolUrl(pool_id) if not pool_id then return "" end return ntop.getHttpPrefix() .. "/lua/hosts_stats.lua?pool=" .. pool_id end -- ############################################## function alert_host_pool_disconnection:init(pool) -- Call the parent constructor self.super:init() self.alert_type_params = alert_creators.createPoolConnectionDisconnection(pool) end -- ####################################################### function alert_host_pool_disconnection.format(ifid, alert, alert_type_params) return (i18n("alert_messages.host_pool_has_disconnected", { pool = alert_type_params.pool, url = getHostPoolUrl(alert.entity_val), })) end -- ####################################################### return alert_host_pool_disconnection