mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 09:20:10 +00:00
54 lines
1.6 KiB
Lua
54 lines
1.6 KiB
Lua
--
|
|
-- (C) 2013-20 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local json = require ("dkjson")
|
|
local tracker = require("tracker")
|
|
local alert_utils = require "alert_utils"
|
|
local alert_consts = require "alert_consts"
|
|
local rest_utils = require("rest_utils")
|
|
|
|
--
|
|
-- Read number of alerts per severity
|
|
-- Example: curl -u admin:admin -H "Content-Type: application/json" -d '{"ifid": "1"}' http://localhost:3000/lua/rest/v1/get/alert/severity/counters.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"]
|
|
local what = _GET["status"] -- historical, historical-flows
|
|
local epoch_begin = _GET["epoch_begin"]
|
|
local epoch_end = _GET["epoch_end"]
|
|
|
|
if isEmptyString(ifid) then
|
|
rest_utils.answer(rest_utils.consts.err.invalid_interface)
|
|
return
|
|
end
|
|
|
|
interface.select(ifid)
|
|
|
|
if isEmptyString(what) or what == "historical" then
|
|
local h_by_severity = alert_utils.getNumAlertsPerSeverity("historical", epoch_begin, epoch_end)
|
|
for k,v in pairs(h_by_severity, asc) do
|
|
v.severity = alert_consts.alertSeverityRaw(v.severity)
|
|
end
|
|
res['historical'] = h_by_severity
|
|
end
|
|
|
|
if isEmptyString(what) or what == "historical-flows" then
|
|
local hf_by_severity = alert_utils.getNumAlertsPerSeverity("historical-flows", epoch_begin, epoch_end)
|
|
for k,v in pairs(hf_by_severity, asc) do
|
|
v.severity = alert_consts.alertSeverityRaw(v.severity)
|
|
end
|
|
res['historical-flows'] = hf_by_severity
|
|
end
|
|
|
|
rest_utils.answer(rc, res)
|
|
|