ntopng/scripts/lua/modules/check_templates/long_lived.lua
2024-01-12 11:44:18 +01:00

65 lines
1.7 KiB
Lua

--
-- (C) 2019-24 - 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 long_lived = classes.class(check_template)
-- ##############################################
long_lived.meta = {
}
-- ##############################################
-- @brief Prepare an instance of the template
-- @return A table with the template built
function long_lived:init(check)
-- Call the parent constructor
self.super:init(check)
end
-- #######################################################
function long_lived:parseConfig(conf)
if(tonumber(conf.min_duration) == nil) then
return false, "bad min_duration value"
end
return http_lint.validateListItems(self._check, conf)
end
-- #######################################################
function long_lived:describeConfig(hooks_conf)
if not hooks_conf.all then
return '' -- disabled, nothing to show
end
local conf = hooks_conf.all.script_conf
local msg = i18n("checks.long_lived_flows_descr", {
duration = secondsToTime(conf.min_duration),
})
if(not table.empty(conf.items)) then
msg = msg .. ". " .. i18n("checks.exceptions", {exceptions = table.concat(conf.items, ', ')})
end
return(msg)
end
-- #######################################################
return long_lived