mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Implement initial flow score support
This commit is contained in:
parent
d2fc1f3b0b
commit
2d02de6cc1
11 changed files with 169 additions and 7 deletions
|
|
@ -2435,3 +2435,14 @@ function getFlowsTableTitle()
|
|||
end
|
||||
|
||||
-- #######################
|
||||
|
||||
-- A one line flow description
|
||||
function shortFlowLabel(flow)
|
||||
return(string.format("[%s] %s:%d -> %s:%s [%s]", flow["proto.l4"],
|
||||
flow["cli.ip"], flow["cli.port"],
|
||||
flow["srv.ip"], flow["srv.port"],
|
||||
flow["proto.ndpi"]
|
||||
))
|
||||
end
|
||||
|
||||
-- #######################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue