mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Fixes flow process trees
This commit is contained in:
parent
34fb0de859
commit
63ce367f8b
2 changed files with 3 additions and 2 deletions
|
|
@ -11,7 +11,8 @@ local json = require "dkjson"
|
|||
sendHTTPHeader('text/json')
|
||||
|
||||
local flow_key = _GET["flow_key"]
|
||||
local flow = interface.findFlowByKeyAndHashId(tonumber(flow_key), 0 --[[ TODO --]])
|
||||
local flow_hash_id = _GET["flow_hash_id"]
|
||||
local flow = interface.findFlowByKeyAndHashId(tonumber(flow_key), tonumber(flow_hash_id))
|
||||
local tree = {}
|
||||
|
||||
local function format_proc(name, pid)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue