Added new exporters details page (#9732)

This commit is contained in:
Matteo Biscosi 2025-10-15 11:57:13 +02:00
parent 9adc8349ae
commit d267cee3eb
16 changed files with 807 additions and 268 deletions

View file

@ -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