mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
38 lines
959 B
Lua
38 lines
959 B
Lua
--
|
|
-- (C) 2019-24 - ntop.org
|
|
--
|
|
|
|
local checks = require("checks")
|
|
local alert_consts = require("alert_consts")
|
|
local host_alert_keys = require "host_alert_keys"
|
|
|
|
-- #################################################################
|
|
|
|
local flow_flood = {
|
|
-- Script category
|
|
category = checks.check_categories.security,
|
|
severity = alert_consts.get_printable_severities().error,
|
|
|
|
default_enabled = false,
|
|
alert_id = host_alert_keys.host_alert_flow_flood,
|
|
|
|
default_value = {
|
|
-- "> 50"
|
|
operator = "gt",
|
|
threshold = 256,
|
|
},
|
|
|
|
gui = {
|
|
i18n_title = "entity_thresholds.flow_flood_title",
|
|
i18n_description = "entity_thresholds.flow_flood_description",
|
|
i18n_field_unit = checks.field_units.flow_sec,
|
|
input_builder = "threshold_cross",
|
|
field_max = 65535,
|
|
field_min = 1,
|
|
field_operator = "gt";
|
|
}
|
|
}
|
|
|
|
-- #################################################################
|
|
|
|
return flow_flood
|