mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Refactors {host,flow}_callbacks into {host,flow}_checks (lua)
This commit is contained in:
parent
9a541f14ba
commit
25159f0a9b
59 changed files with 73 additions and 73 deletions
|
|
@ -0,0 +1,26 @@
|
|||
--
|
||||
-- (C) 2019-21 - ntop.org
|
||||
--
|
||||
|
||||
local checks = require("checks")
|
||||
local host_alert_keys = require "host_alert_keys"
|
||||
|
||||
local remote_connection = {
|
||||
-- Script category
|
||||
category = checks.check_categories.network,
|
||||
|
||||
default_enabled = false,
|
||||
alert_id = host_alert_keys.host_alert_remote_connection,
|
||||
|
||||
default_value = {
|
||||
},
|
||||
|
||||
gui = {
|
||||
i18n_title = "alerts_dashboard.remote_connection_title",
|
||||
i18n_description = "alerts_dashboard.remote_connection_description",
|
||||
}
|
||||
}
|
||||
|
||||
-- #################################################################
|
||||
|
||||
return remote_connection
|
||||
Loading…
Add table
Add a link
Reference in a new issue