mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
parent
11984747d5
commit
c0ae77e43a
3 changed files with 18 additions and 6 deletions
|
|
@ -192,7 +192,13 @@ if(flows_stats == nil) then flows_stats = { } end
|
|||
for key, value in ipairs(flows_stats) do
|
||||
local info = ""
|
||||
if(not isEmptyString(flows_stats[key]["info"])) then
|
||||
info = shortenString(flows_stats[key]["info"])
|
||||
info = flows_stats[key]["info"]
|
||||
|
||||
if not isEmptyString(flows_stats[key]["host_server_name"]) then
|
||||
info = info:gsub(flows_stats[key]["host_server_name"], '')
|
||||
end
|
||||
|
||||
info = shortenString(info)
|
||||
elseif(not isEmptyString(flows_stats[key]["icmp"])) then
|
||||
info = getICMPTypeCode(flows_stats[key]["icmp"])
|
||||
elseif(flows_stats[key]["proto.ndpi"] == "SIP") then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue