mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-22 19:21:13 +00:00
34 lines
876 B
Lua
34 lines
876 B
Lua
--
|
|
-- (C) 2019 - ntop.org
|
|
--
|
|
|
|
local alerts_api = require("alerts_api")
|
|
local user_scripts = require("user_scripts")
|
|
|
|
local script = {
|
|
key = "flows",
|
|
local_only = true,
|
|
|
|
hooks = {
|
|
all = alerts_api.threshold_check_function
|
|
},
|
|
|
|
gui = {
|
|
i18n_title = "alerts_thresholds_config.alert_flows_title",
|
|
i18n_description = "alerts_thresholds_config.alert_flows_description",
|
|
i18n_field_unit = user_scripts.field_units.flows,
|
|
input_builder = user_scripts.threshold_cross_input_builder,
|
|
}
|
|
}
|
|
|
|
-- #################################################################
|
|
|
|
function script.get_threshold_value(granularity, info)
|
|
local nf = host.getNumFlows()
|
|
|
|
return alerts_api.host_delta_val(script.key, granularity, nf["total_flows.as_client"] + nf["total_flows.as_server"])
|
|
end
|
|
|
|
-- #################################################################
|
|
|
|
return script
|