mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
Increases default script thresholds
Fixes #4424 with companion pro commit
This commit is contained in:
parent
af12cdb86b
commit
f12ad8c028
9 changed files with 20 additions and 10 deletions
|
|
@ -19,9 +19,8 @@ local script = {
|
|||
-- The default threshold value. The format is specific of the
|
||||
-- "threshold_cross" input builder
|
||||
default_value = {
|
||||
-- "> 50"
|
||||
operator = "gt",
|
||||
threshold = 50,
|
||||
threshold = 256,
|
||||
},
|
||||
|
||||
-- See below
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ local script = {
|
|||
default_value = {
|
||||
-- "> 30"
|
||||
operator = "gt",
|
||||
threshold = 30,
|
||||
threshold = 256,
|
||||
},
|
||||
|
||||
-- See below
|
||||
|
|
|
|||
|
|
@ -16,8 +16,10 @@ local script = {
|
|||
-- This script is only for alerts generation
|
||||
is_alert = true,
|
||||
|
||||
-- No default threshold configuration is provided
|
||||
default_value = {},
|
||||
default_value = {
|
||||
operator = "gt",
|
||||
threshold = 32768,
|
||||
},
|
||||
|
||||
-- See below
|
||||
hooks = {},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue