mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
60 lines
1.4 KiB
Lua
60 lines
1.4 KiB
Lua
--
|
|
-- (C) 2013-24 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
-- Imports
|
|
require "lua_utils"
|
|
local graph_utils = require "graph_utils"
|
|
local rest_utils = require "rest_utils"
|
|
local inactive_hosts_utils = require "inactive_hosts_utils"
|
|
|
|
-- Local variables
|
|
|
|
local ifid = _GET["ifid"] or interface.getId()
|
|
interface.select(tostring(ifid))
|
|
|
|
local inactive_hosts_manufacturer = inactive_hosts_utils.getManufacturerFilters(ifid)--, inactive_hosts_utils.getFilters())
|
|
local max = 9
|
|
local other_num = 0
|
|
local series = {}
|
|
local labels = {}
|
|
local colors = {}
|
|
local rsp = {
|
|
series = {},
|
|
labels = {},
|
|
colors = {},
|
|
yaxis = {
|
|
labels = {}
|
|
},
|
|
tooltip = {
|
|
y = {}
|
|
}
|
|
}
|
|
|
|
for _, info in pairsByField(inactive_hosts_manufacturer, "count", rev) do
|
|
if info.count and max > 0 then
|
|
series[#series + 1] = info.count
|
|
labels[#labels + 1] = info.label
|
|
colors[#colors + 1] = graph_utils.get_html_color(#colors + 1)
|
|
max = max - 1
|
|
elseif info.count then
|
|
other_num = other_num + info.count
|
|
end
|
|
end
|
|
|
|
if other_num > 0 then
|
|
series[#series + 1] = other_num
|
|
labels[#labels + 1] = i18n('other')
|
|
colors[#colors + 1] = graph_utils.get_html_color(#colors + 1)
|
|
end
|
|
|
|
rsp.series = series
|
|
rsp.labels = labels
|
|
rsp.colors = colors
|
|
|
|
-- ##################################
|
|
|
|
rest_utils.answer(rest_utils.consts.success.ok, rsp)
|