mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Fixed node others creation in ASN Sankey (#9412)
This commit is contained in:
parent
0ee6d2afed
commit
7782f7c1ec
1 changed files with 1 additions and 1 deletions
|
|
@ -247,7 +247,7 @@ local function top_max_nodes(l, criteria)
|
|||
if criteria == traffic_criteria.INGRESS then
|
||||
table.sort(list, function(a, b) return a.sent > b.sent end)
|
||||
else
|
||||
table.sort(list, function(a, b) return a.sent > b.sent end)
|
||||
table.sort(list, function(a, b) return a.rcvd > b.rcvd end)
|
||||
end
|
||||
local reduced_transit = {}
|
||||
for i = 1, math.min(max_nodes-1, table.len(list)) do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue