ntopng/scripts/lua/get_num_alerts.lua
2020-01-08 23:52:51 +01:00

20 lines
407 B
Lua

--
-- (C) 2016-20 - ntop.org
--
dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
require "alert_utils"
if not isEmptyString(_GET["ifid"]) then
interface.select(_GET["ifid"])
end
sendHTTPContentTypeHeader('text/html')
if(_GET["status"] ~= nil) then
local num = getNumAlerts(_GET["status"], _GET)
print(tostring(num))
end