mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Implemented connection failed alert (#6622)
This commit is contained in:
parent
957e0d777c
commit
e9147aa37d
11 changed files with 145 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
--
|
||||
-- (C) 2019-22 - ntop.org
|
||||
--
|
||||
|
||||
local checks = require("checks")
|
||||
local flow_alert_keys = require "flow_alert_keys"
|
||||
|
||||
-- #################################################################
|
||||
|
||||
local script = {
|
||||
-- Script category
|
||||
category = checks.check_categories.network,
|
||||
|
||||
default_enabled = true,
|
||||
|
||||
alert_id = flow_alert_keys.flow_alert_connection_failed,
|
||||
|
||||
default_value = {
|
||||
},
|
||||
|
||||
gui = {
|
||||
i18n_title = "flow_checks_config.connection_failed_title",
|
||||
i18n_description = "flow_checks_config.connection_failed_description",
|
||||
}
|
||||
}
|
||||
|
||||
-- #################################################################
|
||||
|
||||
return script
|
||||
Loading…
Add table
Add a link
Reference in a new issue