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

@ -12,9 +12,8 @@ local script = {
default_enabled = true,
default_value = {
-- "> 50"
operator = "gt",
threshold = 50,
threshold = 256,
},
-- This script is only for alerts generation

View file

@ -14,7 +14,7 @@ local script = {
default_value = {
-- "> 50"
operator = "gt",
threshold = 50,
threshold = 256,
},
-- This script is only for alerts generation

View file

@ -12,6 +12,11 @@ local script = {
default_enabled = false,
default_value = {
operator = "gt",
threshold = 32768,
},
-- See below
hooks = {},