ntopng/scripts/lua/modules/alert_severity_utils.lua
2024-02-19 12:38:56 +00:00

14 lines
No EOL
242 B
Lua

--
-- (C) 2014-24 - ntop.org
--
--
-- ##############################################
function map_score_to_severity(score)
if score ~= nil then
return ntop.mapScoreToSeverity(score)
end
return ntop.mapScoreToSeverity(0)
end