Refactors {host,flow}_callbacks into {host,flow}_checks (lua)

This commit is contained in:
Simone Mainardi 2021-06-16 18:59:07 +02:00
parent 9a541f14ba
commit 25159f0a9b
59 changed files with 73 additions and 73 deletions

View file

@ -0,0 +1,27 @@
--
-- (C) 2019-21 - ntop.org
--
local checks = require("checks")
local host_alert_keys = require "host_alert_keys"
-- #################################################################
local flows_anomaly = {
-- Script category
category = checks.check_categories.network,
alert_id = host_alert_keys.host_alert_flows_anomaly,
default_value = {
},
gui = {
i18n_title = "alerts_thresholds_config.flows_anomaly_title",
i18n_description = "alerts_thresholds_config.flows_anomaly_description",
}
}
-- #################################################################
return flows_anomaly