mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Move syslog producer list to rest API
This commit is contained in:
parent
ebfd4457a4
commit
7b8796f96e
8 changed files with 7 additions and 7 deletions
25
scripts/lua/rest/v2/get/syslog/producer/list.lua
Normal file
25
scripts/lua/rest/v2/get/syslog/producer/list.lua
Normal 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))
|
||||
Loading…
Add table
Add a link
Reference in a new issue