mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
18 lines
354 B
Lua
18 lines
354 B
Lua
--
|
|
-- (C) 2016-18 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
require "alert_utils"
|
|
|
|
interface.select(ifname)
|
|
|
|
sendHTTPContentTypeHeader('text/html')
|
|
|
|
if(_GET["status"] ~= nil) then
|
|
local num = getNumAlerts(_GET["status"], _GET)
|
|
print(tostring(num))
|
|
end
|