Move syslog producer list to rest API

This commit is contained in:
Alfredo Cardigliano 2022-02-07 09:32:02 +01:00
parent ebfd4457a4
commit 7b8796f96e
8 changed files with 7 additions and 7 deletions

View file

@ -0,0 +1,25 @@
--
-- (C) 2019-22 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
local json = require("dkjson")
local syslog_utils = require "syslog_utils"
sendHTTPContentTypeHeader('application/json')
local res = {}
local ifid = interface.getId()
if tonumber(_GET["ifid"]) ~= nil then
ifid = _GET["ifid"]
end
if ifid ~= nil then
res = syslog_utils.getProducers(ifid)
end
print(json.encode(res))