mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 19:15:03 +00:00
30 lines
934 B
Lua
30 lines
934 B
Lua
--
|
|
-- (C) 2019 - ntop.org
|
|
--
|
|
|
|
local alerts_api = require("alerts_api")
|
|
local alert_consts = require("alert_consts")
|
|
|
|
local check_module = {
|
|
key = "throughput",
|
|
alert_type = alert_consts.alert_types.threshold_cross,
|
|
check_function = alerts_api.threshold_check_function,
|
|
local_only = true,
|
|
|
|
gui = {
|
|
i18n_title = "alerts_thresholds_config.throughput",
|
|
i18n_description = "alerts_thresholds_config.alert_throughput_description",
|
|
i18n_field_unit = alert_consts.field_units.mbits,
|
|
input_builder = alerts_api.threshold_cross_input_builder,
|
|
}
|
|
}
|
|
|
|
-- #################################################################
|
|
|
|
function check_module.get_threshold_value(granularity, info)
|
|
return alerts_api.host_delta_val(check_module.key, granularity, info["bytes.sent"] + info["bytes.rcvd"]) * 8 / granularity2sec(granularity)
|
|
end
|
|
|
|
-- #################################################################
|
|
|
|
return check_module
|