Configuring Alert Rules
This section describes how to configure the alert rules.
To configure the alert rules, use the following configuration:
config
alerts rules group alert_group_name
rule rule_name
expression promql_expression
duration duration
severity severity_level
type alert-type
annotation annotation_name
value annotation_value
end
NOTES:
-
alerts rules – Specifies the Prometheus alerting rules.
-
group alert_group_name – Specifies the Prometheus alerting rule group. One alert group can have multiple lists of rules. alert-group-name is the name of the alert group. alert_group_name must be a string in the range of 0–64 characters.
-
rule rule_name – Specifies the alerting rule definition. rule_name is the name of the rule.
-
expression promql_expression – Specifies the PromQL alerting rule expression. promql_expression is the alert rule query expressed in PromQL syntax. The promql_expression must be a string in the range of 0–64 characters.
-
duration duration – Specifies the duration of a true condition before it is considered true. duration is the time interval before the alert is triggered.
-
severity severity_level – Specifies the severity of the alert. severity-level is the severity level of the alert. The severity levels are critical, major, minor, and warning.
-
type alert_type – Specifies the type of the alert. alert_type is the user-defined alert type. For example, Communications Alarm, Environmental Alarm, Equipment Alarm, Indeterminate Integrity Violation Alarm, Operational Violation Alarm, Physical Violation Alarm, Processing Error Alarm, Quality of Service Alarm, Security Service Alarm, Mechanism Violation Alarm, or Time Domain Violation Alarm.
-
annotation annotation_name – Specifies the annotation to attach to the alerts. annotation_name is the name of the annotation.
-
value annotation_value – Specifies the annotation value. annotation_value is the value of the annotation.
The following example configures an alert, which is triggered when the percentage of N7 responses is less than the specified threshold limit.
Example:
configure terminal
alerts rules group PCFN7chk_incr
interval-seconds 300
rule PCFN7chk_incr
expression "sum(increase(inbound_request_total{interface_name=\"N7\", result_code=~\"2..\"}[3m])) / sum(increase(inbound_request_total{interface_name=\"N7\"}[3m]))< 0.95"
severity major
type "N7 Communications Alarm"
annotation summary
value "This alert is fired when the percentage of N7 responses is less than threshold“
exit
exit
exit