mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 10:41:34 +00:00
Implemented the time series for deduplicated flows (#9930)
This commit is contained in:
parent
17b73143dd
commit
56251477db
6 changed files with 37 additions and 1 deletions
|
|
@ -233,6 +233,13 @@ function ts_dump.iface_update_general_stats(when, ifstats, verbose)
|
|||
{ifid = ifstats.id, new_flows = ifstats.stats.new_flows},
|
||||
when)
|
||||
|
||||
if ntop.isEnterpriseXL() then
|
||||
-- Deduplicated Flows
|
||||
if ntop.isFlowDedupEnabled() then
|
||||
ts_utils.append("iface:deduplicated_flows",
|
||||
{ifid = ifstats.id, num_flows = ifstats.stats.num_deduplicated_flows}, when)
|
||||
end
|
||||
end
|
||||
-- QoE Stats
|
||||
if ntop.isEnterpriseL() then
|
||||
local qoe_list = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue