mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Simplifies host callbacks lua structure with callback_definitions/host
This commit is contained in:
parent
9d2bd43bd8
commit
c0ad0ff162
24 changed files with 309 additions and 453 deletions
44
scripts/lua/modules/callback_definitions/host/syn_scan.lua
Normal file
44
scripts/lua/modules/callback_definitions/host/syn_scan.lua
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
--
|
||||
-- (C) 2019-21 - ntop.org
|
||||
--
|
||||
|
||||
local user_scripts = require("user_scripts")
|
||||
local alert_severities = require "alert_severities"
|
||||
|
||||
local syn_scan = {
|
||||
-- Script category
|
||||
category = user_scripts.script_categories.network,
|
||||
|
||||
default_enabled = false,
|
||||
|
||||
-- The default threshold value. The format is specific of the
|
||||
-- "threshold_cross" input builder
|
||||
default_value = {
|
||||
operator = "gt",
|
||||
threshold = 256,
|
||||
severity = alert_severities.error,
|
||||
},
|
||||
|
||||
-- Allow user script configuration from the GUI
|
||||
gui = {
|
||||
-- Localization strings, from the "locales" directory of the plugin
|
||||
i18n_title = "entity_thresholds.syn_scan_title",
|
||||
i18n_description = "entity_thresholds.syn_scan_description",
|
||||
|
||||
-- The input builder to use to draw the gui
|
||||
input_builder = "threshold_cross",
|
||||
|
||||
-- Specific parameters of this input builder
|
||||
i18n_field_unit = user_scripts.field_units.syn_min,
|
||||
-- max allowed threshold value
|
||||
field_max = 65535,
|
||||
-- min allowed threshold value
|
||||
field_min = 1,
|
||||
-- threshold check operator. "gt" for ">", "lt" or "<"
|
||||
field_operator = "gt";
|
||||
}
|
||||
}
|
||||
|
||||
-- #################################################################
|
||||
|
||||
return syn_scan
|
||||
Loading…
Add table
Add a link
Reference in a new issue