mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
35 lines
867 B
Lua
35 lines
867 B
Lua
--
|
|
-- (C) 2019-21 - ntop.org
|
|
--
|
|
|
|
local checks = require("checks")
|
|
local host_alert_keys = require "host_alert_keys"
|
|
|
|
-- #################################################################
|
|
|
|
local dns_contacts = {
|
|
-- Script category
|
|
category = checks.script_categories.security,
|
|
|
|
default_enabled = false,
|
|
alert_id = host_alert_keys.host_alert_dns_server_contacts,
|
|
|
|
default_value = {
|
|
operator = "gt",
|
|
threshold = 5,
|
|
},
|
|
|
|
gui = {
|
|
i18n_title = "alerts_thresholds_config.dns_contacts_title",
|
|
i18n_description = "alerts_thresholds_config.dns_contacts_description",
|
|
i18n_field_unit = checks.field_units.contacts,
|
|
input_builder = "threshold_cross",
|
|
field_max = 65535,
|
|
field_min = 1,
|
|
field_operator = "gt";
|
|
}
|
|
}
|
|
|
|
-- #################################################################
|
|
|
|
return dns_contacts
|