mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Adding a new timeseries: how to add number of unrecheable flows client/server per host.
This commit is contained in:
parent
9d09d2e616
commit
468558ddb4
16 changed files with 77 additions and 14 deletions
|
|
@ -190,8 +190,13 @@ if not isEmptyString(tcp_state) then
|
|||
end
|
||||
|
||||
local flows_stats = interface.getFlowsInfo(host, pageinfo)
|
||||
local total = flows_stats["numFlows"]
|
||||
local flows_stats = flows_stats["flows"]
|
||||
local total
|
||||
local flows_stats
|
||||
|
||||
if(flows_stats ~= nil) then
|
||||
total = flows_stats["numFlows"]
|
||||
flows_stats = flows_stats["flows"]
|
||||
end
|
||||
|
||||
-- Prepare host
|
||||
local host_list = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue