Implemented skeleton of CustomFlowLuaScriptAlert check

This commit is contained in:
Luca Deri 2022-11-19 20:31:24 +01:00
parent 5f7bc4c542
commit 80db634bfe
15 changed files with 268 additions and 27 deletions

View file

@ -43,7 +43,9 @@ function multi_threshold_cross:describeConfig(hooks_conf)
local msg = ''
for field, value in pairs(configured_threshold) do
msg = msg .. i18n(field) .. ": " .. value.threshold .. "%, "
if(value.threshold ~= nil) then
msg = msg .. i18n(field) .. ": " .. value.threshold .. "%, "
end
end
return msg