mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 16:30:10 +00:00
Prevents localstats to be overwritten in interfaces aggregation
Fixes #552
This commit is contained in:
parent
d3741632a4
commit
9ce96af916
3 changed files with 10 additions and 5 deletions
|
|
@ -13,7 +13,9 @@ sendHTTPHeader('text/html; charset=iso-8859-1')
|
|||
|
||||
function dumpInterfaceStats(interface_name)
|
||||
interface.select(interface_name)
|
||||
ifstats = aggregateInterfaceStats(interface.getStats())
|
||||
|
||||
ifstats = interface.getStats()
|
||||
ifstats = aggregateInterfaceStats(ifstats)
|
||||
|
||||
stats = interface.getFlowsStats()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue