mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
Removed no more used checks (#8235)
This commit is contained in:
parent
1640d1b036
commit
88e5d26afe
8 changed files with 1 additions and 4 deletions
|
|
@ -1,44 +0,0 @@
|
|||
--
|
||||
-- (C) 2019-24 - ntop.org
|
||||
--
|
||||
|
||||
local alerts_api = require("alerts_api")
|
||||
local alert_consts = require("alert_consts")
|
||||
local alert_categories = require "alert_categories"
|
||||
local field_units = require "field_units"
|
||||
|
||||
local script = {
|
||||
-- Script category
|
||||
category = alert_categories.network,
|
||||
|
||||
default_enabled = false,
|
||||
severity = alert_consts.get_printable_severities().error,
|
||||
|
||||
default_value = {
|
||||
operator = "gt",
|
||||
threshold = 1073741824, -- 1GB
|
||||
},
|
||||
|
||||
-- See below
|
||||
hooks = {},
|
||||
|
||||
gui = {
|
||||
i18n_title = "alerts_thresholds_config.egress_traffic",
|
||||
i18n_description = "alerts_thresholds_config.alert_network_egress_description",
|
||||
i18n_field_unit = field_units.bytes,
|
||||
input_builder = "threshold_cross",
|
||||
}
|
||||
}
|
||||
|
||||
-- #################################################################
|
||||
|
||||
function script.hooks.min(params)
|
||||
local value = alerts_api.network_delta_val(script.key, params.granularity, params.entity_info["egress"])
|
||||
|
||||
-- Check if the configured threshold is crossed by the value and possibly trigger an alert
|
||||
alerts_api.checkThresholdAlert(params, alert_consts.alert_types.alert_threshold_cross, value)
|
||||
end
|
||||
|
||||
-- #################################################################
|
||||
|
||||
return script
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
--
|
||||
-- (C) 2019-24 - ntop.org
|
||||
--
|
||||
|
||||
local alerts_api = require("alerts_api")
|
||||
local alert_consts = require("alert_consts")
|
||||
local alert_categories = require "alert_categories"
|
||||
local field_units = require "field_units"
|
||||
|
||||
local script = {
|
||||
-- Script category
|
||||
category = alert_categories.network,
|
||||
severity = alert_consts.get_printable_severities().error,
|
||||
|
||||
default_enabled = false,
|
||||
|
||||
default_value = {
|
||||
operator = "gt",
|
||||
threshold = 1073741824, -- 1GB
|
||||
},
|
||||
|
||||
-- See below
|
||||
hooks = {},
|
||||
|
||||
gui = {
|
||||
i18n_title = "alerts_thresholds_config.ingress_traffic",
|
||||
i18n_description = "alerts_thresholds_config.alert_network_ingress_description",
|
||||
i18n_field_unit = field_units.bytes,
|
||||
input_builder = "threshold_cross",
|
||||
}
|
||||
}
|
||||
|
||||
-- #################################################################
|
||||
|
||||
function script.hooks.min(params)
|
||||
local value = alerts_api.network_delta_val(script.key, params.granularity, params.entity_info["ingress"])
|
||||
|
||||
-- Check if the configured threshold is crossed by the value and possibly trigger an alert
|
||||
alerts_api.checkThresholdAlert(params, alert_consts.alert_types.alert_threshold_cross, value)
|
||||
end
|
||||
|
||||
-- #################################################################
|
||||
|
||||
return script
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
--
|
||||
-- (C) 2019-24 - ntop.org
|
||||
--
|
||||
|
||||
local alerts_api = require("alerts_api")
|
||||
local alert_consts = require("alert_consts")
|
||||
local alert_categories = require "alert_categories"
|
||||
local field_units = require "field_units"
|
||||
|
||||
local script = {
|
||||
-- Script category
|
||||
category = alert_categories.network,
|
||||
|
||||
default_enabled = false,
|
||||
severity = alert_consts.get_printable_severities().error,
|
||||
|
||||
default_value = {
|
||||
operator = "gt",
|
||||
threshold = 1073741824, -- 1GB
|
||||
},
|
||||
|
||||
-- See below
|
||||
hooks = {},
|
||||
|
||||
gui = {
|
||||
i18n_title = "alerts_thresholds_config.inner_traffic",
|
||||
i18n_description = "alerts_thresholds_config.alert_network_inner_description",
|
||||
i18n_field_unit = field_units.bytes,
|
||||
input_builder = "threshold_cross",
|
||||
}
|
||||
}
|
||||
|
||||
-- #################################################################
|
||||
|
||||
function script.hooks.min(params)
|
||||
local value = alerts_api.network_delta_val(script.key, params.granularity, params.entity_info["inner"])
|
||||
|
||||
-- Check if the configured threshold is crossed by the value and possibly trigger an alert
|
||||
alerts_api.checkThresholdAlert(params, alert_consts.alert_types.alert_threshold_cross, value)
|
||||
end
|
||||
|
||||
-- #################################################################
|
||||
|
||||
return script
|
||||
Loading…
Add table
Add a link
Reference in a new issue