mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Refactors alert_utils and enterprise_alert_utils
Addresses #3720 Alerts Refactor: alert_utils as module Alerts Refactor: notify_ntopng_start and notify_ntopng_stop Alerts Refactor: processAlertNotifications Alerts Refactor: checkStoreAlertsFromC Alerts Refactor: formatAlertNotification Alerts Refactor: notification_timestamp_rev Alerts Refactor: formatAlertMessage Alerts Refactor: getConfigsetAlertLink Alerts Refactor: alertNotificationActionToLabel Alerts Refactor: flushAlertsData Alerts Refactor: disableAlertsGeneration Alerts Refactor: newAlertsWorkingStatus and other Alerts Refactor: drawAlerts Alerts Refactor: drawAlertTables Alerts Refactor: printAlertTables Alerts Refactor: checkDeleteStoredAlerts Alerts Refactor: getUnpagedAlertOptions Alerts Refactor: getTabParameters Alerts Refactor: getAlerts Alerts Refactor: getNumAlerts Alerts Refactor: performAlertsQuery Alerts Refactor: sec2granularity Alerts Refactor: granularity2id Alerts Refactor: granularity2sec Alerts Refactor: alertEngineLabel Alerts Refactor: alertEngine Alerts Refactor: alertEngineRaw Alerts Refactor: alertTypeDescription Alerts Refactor: alertType Alerts Refactor: alertTypeLabel Alerts Refactor: alertTypeRaw Alerts Refactor: alertSeverity Alerts Refactor: alertSeverityLabel Alerts Refactor: alertSeverityRaw Alerts Refactor: get_make_room_keys Alerts Refactor: enterprise_alert_utils
This commit is contained in:
parent
c83d622ad4
commit
e487427aab
52 changed files with 354 additions and 353 deletions
|
|
@ -381,10 +381,10 @@ function alerts_api.releaseEntityAlerts(entity_info, alerts)
|
|||
-- NOTE: do not pass alerts here as a parameters as deleting items while
|
||||
-- does not work in lua
|
||||
alerts_api.release(entity_info, {
|
||||
alert_type = alert_consts.alert_types[alertTypeRaw(alert.alert_type)],
|
||||
alert_severity = alert_consts.alert_severities[alertSeverityRaw(alert.alert_severity)],
|
||||
alert_type = alert_consts.alert_types[alert_consts.alertTypeRaw(alert.alert_type)],
|
||||
alert_severity = alert_consts.alert_severities[alert_consts.alertSeverityRaw(alert.alert_severity)],
|
||||
alert_subtype = alert.alert_subtype,
|
||||
alert_granularity = alert_consts.alerts_granularities[sec2granularity(alert.alert_granularity)],
|
||||
alert_granularity = alert_consts.alerts_granularities[alert_consts.sec2granularity(alert.alert_granularity)],
|
||||
})
|
||||
end
|
||||
end
|
||||
|
|
@ -541,7 +541,7 @@ end
|
|||
function alerts_api.processNotificationType(event_type, severity, msg_details)
|
||||
return({
|
||||
alert_type = alert_consts.alert_types.alert_process_notification,
|
||||
alert_severity = alert_consts.alert_severities[alertSeverityRaw(severity)],
|
||||
alert_severity = alert_consts.alert_severities[alert_consts.alertSeverityRaw(severity)],
|
||||
alert_type_params = {
|
||||
msg_details = msg_details,
|
||||
event_type = event_type,
|
||||
|
|
@ -898,7 +898,7 @@ end
|
|||
-- @param skip_first if true, 0 will be returned when no cached value is present
|
||||
-- @return the difference between current and previous value
|
||||
local function delta_val(reg, metric_name, granularity, curr_val, skip_first)
|
||||
local granularity_num = granularity2id(granularity)
|
||||
local granularity_num = alert_consts.granularity2id(granularity)
|
||||
local key = string.format("%s:%s", metric_name, granularity_num)
|
||||
|
||||
-- Read cached value and purify it
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue