mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 01:10:10 +00:00
Reworked host traffic page
This commit is contained in:
parent
c1c6fc5ded
commit
8032fb36ae
7 changed files with 463 additions and 113 deletions
105
scripts/lua/rest/v2/get/host/stats/charts/l4_stats.lua
Normal file
105
scripts/lua/rest/v2/get/host/stats/charts/l4_stats.lua
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
--
|
||||
-- (C) 2013-22 - ntop.org
|
||||
--
|
||||
|
||||
dirs = ntop.getDirs()
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
|
||||
require "lua_utils"
|
||||
local graph_utils = require "graph_utils"
|
||||
local rest_utils = require "rest_utils"
|
||||
|
||||
local ifid = _GET["ifid"]
|
||||
|
||||
if isEmptyString(ifid) then
|
||||
ifid = interface.getId()
|
||||
end
|
||||
|
||||
interface.select(tostring(ifid))
|
||||
|
||||
local host_ip = _GET["host"]
|
||||
local host_vlan = _GET["vlan"] or 0
|
||||
local host = interface.getHostInfo(host_ip, host_vlan)
|
||||
|
||||
local total = 0
|
||||
local total_bytes_sent = 0
|
||||
local total_bytes_rcvd = 0
|
||||
local proto_stats = {}
|
||||
local max_num_entries = 5
|
||||
local colors1 = {}
|
||||
local labels1 = {}
|
||||
local series1 = {}
|
||||
local colors2 = {}
|
||||
local labels2 = {}
|
||||
local series2 = {}
|
||||
local rsp = {}
|
||||
local rc = rest_utils.consts.success.ok
|
||||
|
||||
for id, _ in ipairs(l4_keys) do
|
||||
local key = l4_keys[id][2]
|
||||
local traffic = 0
|
||||
|
||||
if(host[key..".bytes.sent"] ~= nil) then
|
||||
traffic = traffic + host[key..".bytes.sent"]
|
||||
total_bytes_sent = total_bytes_sent + host[key..".bytes.sent"]
|
||||
end
|
||||
|
||||
if(host[key..".bytes.rcvd"] ~= nil) then
|
||||
traffic = traffic + host[key..".bytes.rcvd"]
|
||||
total_bytes_rcvd = total_bytes_rcvd + host[key..".bytes.rcvd"]
|
||||
end
|
||||
|
||||
if traffic > 0 then
|
||||
proto_stats[l4_keys[id][1]] = traffic
|
||||
total = total + traffic
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
for key, value in pairsByValues(proto_stats, rev) do
|
||||
series1[#series1 + 1] = value
|
||||
labels1[#labels1 + 1] = key
|
||||
colors1[#colors1 + 1] = graph_utils.get_html_color(#colors1 + 1)
|
||||
max_num_entries = max_num_entries - 1
|
||||
|
||||
-- Just return the top 5 l4 protocols
|
||||
if max_num_entries == 1 then
|
||||
break
|
||||
end
|
||||
end
|
||||
|
||||
if(host.cardinality) then
|
||||
series2[#series2 + 1] = formatValue(host.cardinality.num_contacted_hosts_as_client) or 0
|
||||
series2[#series2 + 1] = formatValue(host.cardinality.num_contacted_hosts_as_server) or 0
|
||||
else
|
||||
series2[#series2 + 1] = {}
|
||||
series2[#series2 + 1] = {}
|
||||
end
|
||||
|
||||
colors2[#colors2 + 1] = graph_utils.get_html_color(#colors2 + 1)
|
||||
colors2[#colors2 + 1] = graph_utils.get_html_color(#colors2 + 1)
|
||||
labels2[#labels2 + 1] = i18n("traffic_page.num_contacted_hosts_as_client")
|
||||
labels2[#labels2 + 1] = i18n("traffic_page.num_contacted_hosts_as_server")
|
||||
|
||||
-- L4 proto total distribution
|
||||
rsp["serie1"] = {
|
||||
["series"] = series1,
|
||||
["labels"] = labels1,
|
||||
["colors"] = colors1
|
||||
}
|
||||
|
||||
-- Host contacts
|
||||
rsp["serie2"] = {
|
||||
["series"] = series2,
|
||||
["labels"] = labels2,
|
||||
["colors"] = colors2
|
||||
}
|
||||
|
||||
-- Bytes sent vs Bytes rcvd
|
||||
rsp["serie3"] = {
|
||||
["series"] = { total_bytes_sent, total_bytes_rcvd },
|
||||
["labels"] = { i18n("traffic_page.bytes_sent"), i18n("traffic_page.bytes_rcvd") },
|
||||
["colors"] = colors2 -- Still two colors like the second serie, reuse it
|
||||
}
|
||||
|
||||
rest_utils.answer(rc, rsp)
|
||||
77
scripts/lua/rest/v2/get/host/stats/l4_traffic.lua
Normal file
77
scripts/lua/rest/v2/get/host/stats/l4_traffic.lua
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
--
|
||||
-- (C) 2013-22 - ntop.org
|
||||
--
|
||||
|
||||
local dirs = ntop.getDirs()
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
|
||||
require "lua_utils"
|
||||
local rest_utils = require("rest_utils")
|
||||
|
||||
--
|
||||
-- Read list of active hosts
|
||||
-- Example: curl -u admin:admin -H "Content-Type: application/json" -d '{"ifid": "1", "host": "192.168.1.1", "vlan": "1"}' http://localhost:3000/lua/rest/v2/get/host/active.lua
|
||||
--
|
||||
-- NOTE: in case of invalid login, no error is returned but redirected to login
|
||||
--
|
||||
|
||||
local rc = rest_utils.consts.success.ok
|
||||
local rsp = {}
|
||||
|
||||
local ifid = _GET["ifid"] or interface.getId()
|
||||
local host_ip = _GET["host"]
|
||||
local host_vlan = _GET["vlan"] or 0
|
||||
local host = interface.getHostInfo(host_ip, host_vlan)
|
||||
|
||||
local total = 0
|
||||
local proto_info = {}
|
||||
|
||||
-- Calculate total bytes
|
||||
for id, _ in ipairs(l4_keys) do
|
||||
local k = l4_keys[id][2]
|
||||
total = total + (host[k..".bytes.sent"] or 0) + (host[k..".bytes.rcvd"] or 0)
|
||||
end
|
||||
|
||||
-- Getting l4 protocols info
|
||||
for id, _ in ipairs(l4_keys) do
|
||||
local k = l4_keys[id][2]
|
||||
|
||||
if host[k..".bytes.sent"] or host[k..".bytes.rcvd"] then
|
||||
local proto_stats = {}
|
||||
|
||||
if host[k..".bytes.sent"] then
|
||||
proto_stats["bytesSent"] = host[k..".bytes.sent"] or 0
|
||||
end
|
||||
|
||||
if host[k..".bytes.rcvd"] then
|
||||
proto_stats["bytesRcvd"] = host[k..".bytes.rcvd"] or 0
|
||||
end
|
||||
|
||||
proto_stats["protocol"] = l4_keys[id][1] .. " " .. historicalProtoHostHref(ifid, host_ip, l4_keys[id][1], nil, nil, host_vlan, true)
|
||||
proto_stats["totalBytes"] = (host[k..".bytes.sent"] or 0) + (host[k..".bytes.rcvd"] or 0)
|
||||
proto_stats["totalPctg"] = round((proto_stats["totalBytes"] * 100) / total, 2)
|
||||
proto_stats["breakdown"] = round((proto_stats["bytesSent"] * 100) / (proto_stats["bytesSent"] + proto_stats["bytesRcvd"]), 0)
|
||||
|
||||
if(areHostTimeseriesEnabled(ifId, url2hostinfo(_GET))) then -- Check if the host timeseries are enabled
|
||||
proto_stats["historical"] = hostinfo2detailshref(host, {page = "historical", ts_schema = "host:l4protos", l4proto = k}, '<i class="fas fa-chart-area"></i>')
|
||||
end
|
||||
|
||||
if proto_stats["totalBytes"] > 0 then
|
||||
-- Add the stats only if greater then 0
|
||||
proto_info[#proto_info + 1] = proto_stats
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if table.len(proto_info) > 0 then
|
||||
rsp["records"] = proto_info
|
||||
end
|
||||
|
||||
if(total > 0) then
|
||||
if(host.cardinality) then
|
||||
rsp["contactedHostsAsCli"] = formatValue(host.cardinality.num_contacted_hosts_as_client)
|
||||
rsp["contactedHostsAsSrv"] = formatValue(host.cardinality.num_contacted_hosts_as_server)
|
||||
end
|
||||
end
|
||||
|
||||
rest_utils.answer(rc, rsp)
|
||||
Loading…
Add table
Add a link
Reference in a new issue