Added detection of periodic flows and exported it as flow risk in both flows and alerts

This commit is contained in:
Luca Deri 2022-12-30 19:48:26 +01:00
parent fab8158bdd
commit 21101c43f1
10 changed files with 74 additions and 34 deletions

View file

@ -222,7 +222,11 @@ function getApplicationLabel(name, maxlen)
-- Do not convert to upper case, keep the nDPI case
--name = name:gsub("^%l", string.upper)
return(icon.." "..shortenString(name, maxlen))
if(icon == "") then
return(shortenString(name, maxlen))
else
return(icon.." "..shortenString(name, maxlen))
end
end
-- #################################