mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
84 lines
2.7 KiB
Lua
84 lines
2.7 KiB
Lua
--
|
|
-- (C) 2013-21 - 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 information about the nprobes connected to an interface
|
|
-- Example: curl -u admin:admin -H "Content-Type: application/json" -d '{"ifid": "1"}' http://localhost:3000/lua/rest/v2/get/interfacenprobes/data.lua
|
|
--
|
|
-- NOTE: in case of invalid login, no error is returned but redirected to login
|
|
--
|
|
|
|
local rc = rest_utils.consts.success.ok
|
|
local res = {}
|
|
|
|
local ifid = _GET["ifid"] or interface.getId()
|
|
|
|
if isEmptyString(ifid) then
|
|
rc = rest_utils.consts.err.invalid_interface
|
|
rest_utils.answer(rc)
|
|
return
|
|
end
|
|
|
|
interface.select(ifid)
|
|
local ifstats = interface.getStats()
|
|
local probes_stats = ifstats.probes or {}
|
|
local timeseries_enabled = areFlowdevTimeseriesEnabled()
|
|
|
|
if interface.isView() then
|
|
local zmq_stats = {}
|
|
local exporters_stats = {}
|
|
for interface_id, _ in pairsByKeys(interface.getIfNames() or {}) do
|
|
interface.select(interface_id)
|
|
if interface.isViewed() then
|
|
local tmp = interface.getStats()
|
|
for k, v in pairs(tmp.probes or {}) do
|
|
v.exporters = tmp.exporters or {}
|
|
v.ifid = interface_id
|
|
probes_stats[k] = v
|
|
end
|
|
end
|
|
end
|
|
ifstats.probes = probes_stats
|
|
interface.select(ifstats.id)
|
|
end
|
|
|
|
for k, v in pairs(ifstats.probes or {}) do
|
|
local flow_drops = 0
|
|
local exported_flows = 0
|
|
local probe_active = false
|
|
if interface.getHostInfo(v["probe.ip"]) then
|
|
probe_active = true
|
|
end
|
|
|
|
for _, values in pairs(v.exporters or ifstats.exporters or {}) do
|
|
flow_drops = flow_drops + values.num_drops
|
|
exported_flows = exported_flows + values.num_netflow_flows + values.num_sflow_flows
|
|
end
|
|
|
|
res[#res + 1] = {
|
|
probe_interface = ternary((v["remote.name"] ~= "none"), v["remote.name"],
|
|
i18n("if_stats_overview.remote_probe_collector_mode")),
|
|
probe_version = v["probe.probe_version"],
|
|
probe_ip = v["probe.ip"],
|
|
probe_uuid = v["probe.uuid"],
|
|
probe_public_ip = v["probe.public_ip"],
|
|
probe_edition = v["probe.probe_edition"],
|
|
probe_license = v["probe.probe_license"] or i18n("if_stats_overview.no_license"),
|
|
probe_maintenance = v["probe.probe_maintenance"] or i18n("if_stats_overview.expired_maintenance"),
|
|
flow_exporters = table.len(v.exporters or ifstats.exporters or {} or {}),
|
|
dropped_flows = flow_drops,
|
|
exported_flows = exported_flows,
|
|
timeseries_enabled = timeseries_enabled,
|
|
ifid = v.ifid,
|
|
is_probe_active = probe_active
|
|
}
|
|
end
|
|
|
|
rest_utils.answer(rc, res)
|