mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
35 lines
919 B
Lua
35 lines
919 B
Lua
--
|
|
-- (C) 2019-22 - ntop.org
|
|
--
|
|
|
|
local checks = require("checks")
|
|
local host_alert_keys = require "host_alert_keys"
|
|
local alert_consts = require("alert_consts")
|
|
|
|
-- #################################################################
|
|
|
|
local pkt_threshold = {
|
|
-- Script category
|
|
category = checks.check_categories.network,
|
|
severity = alert_consts.get_printable_severities().error,
|
|
|
|
default_enabled = false,
|
|
alert_id = host_alert_keys.host_alert_pkt_threshold,
|
|
|
|
default_value = {
|
|
operator = "gt",
|
|
threshold = 10000,
|
|
},
|
|
|
|
gui = {
|
|
i18n_title = "alerts_thresholds_config.alert_pkt_title",
|
|
i18n_description = "alerts_thresholds_config.alert_pkt_description",
|
|
i18n_field_unit = checks.field_units.packets,
|
|
input_builder = "threshold_cross",
|
|
field_operator = "gt";
|
|
},
|
|
}
|
|
|
|
-- #################################################################
|
|
|
|
return pkt_threshold
|