mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 23:19:33 +00:00
Added detection of periodic flows and exported it as flow risk in both flows and alerts
This commit is contained in:
parent
fab8158bdd
commit
21101c43f1
10 changed files with 74 additions and 34 deletions
|
|
@ -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
|
||||
|
||||
-- #################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue