mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Adds ports, l4 and l7 protocols to historical talkers drill-down
This commit is contained in:
parent
ba5b7a08f7
commit
870a08a568
3 changed files with 61 additions and 23 deletions
|
|
@ -29,6 +29,12 @@ end
|
|||
-- this is to retrieve L7 appliation data
|
||||
local l7_proto_id = _GET["l7_proto_id"]
|
||||
|
||||
-- and this to focus only on a certain l4 proto
|
||||
local l4_proto_id = _GET["l4_proto_id"]
|
||||
|
||||
-- also add a port
|
||||
local port = _GET["port"]
|
||||
|
||||
local host_info = url2hostinfo(_GET)
|
||||
local host = nil
|
||||
if host_info["host"] then
|
||||
|
|
@ -114,14 +120,14 @@ local res = {["status"] = "unable to parse the request, please check input param
|
|||
if stats_type == "top_talkers" then
|
||||
if not peer1 and not peer2 and not l7_proto_id then
|
||||
-- CASE 01: compute interface-wide top-talkers for the selected time interval
|
||||
res = getOverallTopTalkers(ifid, nil, epoch_start, epoch_end, sort_column, sort_order, offset, limit)
|
||||
res = getOverallTopTalkers(ifid, l4_proto_id, port, nil, epoch_start, epoch_end, sort_column, sort_order, offset, limit)
|
||||
|
||||
for _, record in pairs(res) do
|
||||
record["label"] = ntop.getResolvedAddress(record["addr"])
|
||||
end
|
||||
elseif not peer1 and not peer2 and l7_proto_id and l7_proto_id ~= "" then
|
||||
-- CASE 02: compute top-talkers for the specified L7 protocol
|
||||
res = getAppTopTalkers(ifid, l7_proto_id, nil, epoch_start, epoch_end, sort_column, sort_order, offset, limit)
|
||||
res = getAppTopTalkers(ifid, l7_proto_id, l4_proto_id, port, nil, epoch_start, epoch_end, sort_column, sort_order, offset, limit)
|
||||
|
||||
for _, record in pairs(res) do
|
||||
record["label"] = ntop.getResolvedAddress(record["addr"])
|
||||
|
|
@ -130,7 +136,7 @@ if stats_type == "top_talkers" then
|
|||
-- CASE 03: compute top-talkers with the given peer1
|
||||
-- if l7_proto_id is specified and non-nil, then top-talkers are computed
|
||||
-- with reference to peer1 and restricted to the application identified by l7_proto_id
|
||||
res = getHostTopTalkers(ifid, peer1, l7_proto_id, nil, epoch_start, epoch_end, sort_column, sort_order, offset, limit)
|
||||
res = getHostTopTalkers(ifid, peer1, l7_proto_id, l4_proto_id, port, nil, epoch_start, epoch_end, sort_column, sort_order, offset, limit)
|
||||
|
||||
for _, record in pairs(res) do
|
||||
record["label"] = ntop.getResolvedAddress(record["addr"])
|
||||
|
|
@ -143,7 +149,7 @@ if stats_type == "top_talkers" then
|
|||
end
|
||||
end
|
||||
elseif stats_type =="top_applications" then
|
||||
res = getTopApplications(ifid, peer1, peer2, nil, epoch_start, epoch_end, sort_column, sort_order, offset, limit)
|
||||
res = getTopApplications(ifid, peer1, peer2, l7_proto_id, l4_proto_id, port, nil, epoch_start, epoch_end, sort_column, sort_order, offset, limit)
|
||||
|
||||
-- add protocol labels
|
||||
for _, record in pairs(res) do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue