Increases default script thresholds

Fixes #4424 with companion pro commit
This commit is contained in:
Simone Mainardi 2020-09-18 11:17:25 +02:00
parent af12cdb86b
commit f12ad8c028
9 changed files with 20 additions and 10 deletions

View file

@ -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

View file

@ -21,7 +21,7 @@ local script = {
default_value = {
-- "> 30"
operator = "gt",
threshold = 30,
threshold = 256,
},
-- See below

View file

@ -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 = {},