mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Refactors user_scripts into checks (lua)
This commit is contained in:
parent
3c3aa5a25f
commit
76fd315d1b
222 changed files with 980 additions and 981 deletions
52
scripts/lua/modules/check_templates/items_list.lua
Normal file
52
scripts/lua/modules/check_templates/items_list.lua
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
--
|
||||
-- (C) 2019-21 - ntop.org
|
||||
--
|
||||
|
||||
-- ##############################################
|
||||
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/check_templates/?.lua;" .. package.path
|
||||
|
||||
-- Import the classes library.
|
||||
local classes = require "classes"
|
||||
-- Make sure to import the Superclass!
|
||||
local check_template = require "check_template"
|
||||
local http_lint = require "http_lint"
|
||||
|
||||
-- ##############################################
|
||||
|
||||
local items_list = classes.class(check_template)
|
||||
|
||||
-- ##############################################
|
||||
|
||||
items_list.meta = {
|
||||
}
|
||||
|
||||
-- ##############################################
|
||||
|
||||
-- @brief Prepare an instance of the template
|
||||
-- @return A table with the template built
|
||||
function items_list:init(check)
|
||||
-- Call the parent constructor
|
||||
self.super:init(check)
|
||||
end
|
||||
|
||||
function items_list:parseConfig(conf)
|
||||
return http_lint.validateListItems(self._check, conf)
|
||||
end
|
||||
|
||||
-- #######################################################
|
||||
|
||||
function items_list:describeConfig(hooks_conf)
|
||||
if((not hooks_conf.all) or (not hooks_conf.all.script_conf)) then
|
||||
return '' -- disabled, nothing to show
|
||||
end
|
||||
|
||||
local items = hooks_conf.all.script_conf.items or {}
|
||||
|
||||
return table.concat(items, ", ")
|
||||
end
|
||||
|
||||
-- #######################################################
|
||||
|
||||
return items_list
|
||||
Loading…
Add table
Add a link
Reference in a new issue