mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 10:41:34 +00:00
Added new exporters details page (#9732)
This commit is contained in:
parent
9adc8349ae
commit
d267cee3eb
16 changed files with 807 additions and 268 deletions
|
|
@ -179,6 +179,7 @@ function getFlowsFilter()
|
|||
local deviceIP = _GET["deviceIP"]
|
||||
local inIfIdx = _GET["inIfIdx"]
|
||||
local outIfIdx = _GET["outIfIdx"]
|
||||
local ifIndex = _GET["ifIdx"]
|
||||
local asn = _GET["asn"]
|
||||
local talking_with = _GET["talking_with"]
|
||||
local client = _GET["client"]
|
||||
|
|
@ -372,6 +373,10 @@ function getFlowsFilter()
|
|||
pageinfo["inIndexFilter"] = tonumber(inIfIdx)
|
||||
end
|
||||
|
||||
if not isEmptyString(ifIdx) then
|
||||
pageinfo["ifaceIndexFilter"] = tonumber(ifIdx)
|
||||
end
|
||||
|
||||
if not isEmptyString(outIfIdx) then
|
||||
pageinfo["outIndexFilter"] = tonumber(outIfIdx)
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue