Added RST scan alert (#5903)

This commit is contained in:
MatteoBiscosi 2022-11-30 17:01:49 +01:00
parent 48535dab63
commit cde463a324
15 changed files with 294 additions and 2 deletions

View file

@ -0,0 +1,45 @@
--
-- (C) 2019-22 - ntop.org
--
local checks = require("checks")
local alert_consts = require("alert_consts")
local host_alert_keys = require "host_alert_keys"
local rst_scan = {
-- Script category
category = checks.check_categories.network,
default_enabled = false,
alert_id = host_alert_keys.host_alert_rst_scan,
severity = alert_consts.get_printable_severities().error,
-- The default threshold value. The format is specific of the
-- "threshold_cross" input builder
default_value = {
operator = "gt",
threshold = 256,
},
-- Allow user script configuration from the GUI
gui = {
i18n_title = "entity_thresholds.rst_scan_title",
i18n_description = "entity_thresholds.rst_scan_description",
-- The input builder to use to draw the gui
input_builder = "threshold_cross",
-- Specific parameters of this input builder
i18n_field_unit = checks.field_units.rst_min,
-- max allowed threshold value
field_max = 65535,
-- min allowed threshold value
field_min = 1,
-- threshold check operator. "gt" for ">", "lt" or "<"
field_operator = "gt";
}
}
-- #################################################################
return rst_scan