mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Implement simplified flows page with container filter
This commit is contained in:
parent
dd848a5ae9
commit
fdc7772519
11 changed files with 359 additions and 53 deletions
|
|
@ -32,6 +32,7 @@ local network_id = _GET["network"]
|
|||
local vlan = _GET["vlan"]
|
||||
local uid = _GET["uid"]
|
||||
local pid = _GET["pid"]
|
||||
local container = _GET["container"]
|
||||
|
||||
local deviceIP = _GET["deviceIP"]
|
||||
local inIfIdx = _GET["inIfIdx"]
|
||||
|
|
@ -169,6 +170,10 @@ if not isEmptyString(pid) then
|
|||
pageinfo["pidFilter"] = tonumber(pid)
|
||||
end
|
||||
|
||||
if not isEmptyString(container) then
|
||||
pageinfo["container"] = container
|
||||
end
|
||||
|
||||
if not isEmptyString(deviceIP) then
|
||||
pageinfo["deviceIpFilter"] = deviceIP
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue