Refactors alrt builders into creators

Refactors builders into creators: calls
This commit is contained in:
Simone Mainardi 2020-04-27 15:36:34 +02:00
parent 00c5e9f909
commit 290175b16f
75 changed files with 158 additions and 158 deletions

View file

@ -15,7 +15,7 @@ local function check_interface_drops(params)
local stats = info.stats_since_reset
local threshold = tonumber(params.user_script_config.threshold)
local drop_perc = math.min(stats.drops * 100.0 / (stats.drops + stats.packets + 1), 100)
local drops_type = alert_consts.alert_types.alert_too_many_drops.builder(
local drops_type = alert_consts.alert_types.alert_too_many_drops.create(
alert_consts.alert_severities.error,
alert_consts.alerts_granularities.min,
stats.drops,