ntopng/scripts/callbacks/interface/host/alerts/active.lua

32 lines
823 B
Lua

--
-- (C) 2019 - ntop.org
--
local alerts_api = require("alerts_api")
local user_scripts = require("user_scripts")
local script = {
key = "active",
local_only = true,
hooks = {
all = alerts_api.threshold_check_function
},
gui = {
i18n_title = "alerts_thresholds_config.activity_time",
i18n_description = "alerts_thresholds_config.alert_active_description",
i18n_field_unit = user_scripts.field_units.seconds,
input_builder = user_scripts.threshold_cross_input_builder,
}
}
-- #################################################################
function script.get_threshold_value(granularity, info)
return alerts_api.host_delta_val(script.key, granularity, host.getTime()["total_activity_time"])
end
-- #################################################################
return script