Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
State and health of alerts
There are three key components that help you understand how your alerts behave during their evaluation: alert instance state, alert rule state, and alert rule health. Although related, each component conveys subtly different information.
Alert instance state
An alert instance can be in either of the following states:
State | Description |
---|---|
Normal | The state of an alert when the condition (threshold) is not met. |
Pending | The state of an alert that has breached the threshold but for less than the pending period. |
Alerting | The state of an alert that has breached the threshold for longer than the pending period. |
NoData | The state of an alert whose query returns no data or all values are null. You can change the default behavior of the no data state. |
Error | The state of an alert when an error or timeout occurred evaluating the alert rule. You can change the default behavior of the error state. |
Notifications
Alert instances will be routed for notifications when they are in the Alerting
state or have been Resolved
, transitioning from Alerting
to Normal
state.
Lifecycle of stale alert instances
An alert instance is considered stale if its dimension or series has disappeared from the query results entirely for two evaluation intervals.
Stale alert instances that are in the Alerting, NoData, or Error states transition to the Normal state as Resolved. Once transitioned, these resolved alert instances are routed for notifications like other resolved alerts.
Modify the no data and error state
In Configure no data and error handling, you can change the default behaviour when the evaluation returns no data or an error. You can set the alert instance state to Alerting
, Normal
, or keep the last state.
To reduce the number of No Data or Error state alerts received, try the following.
Use the Keep last state option. For more information, refer to the section below. This option allows the alert to retain its last known state when there is no data available, rather than switching to a No Data state.
For No Data alerts, you can optimize your alert rule by expanding the time range of the query. However, if the time range is too big, it affects the performance of the query and can lead to errors due to timeout.
To minimize timeouts resulting in the Error state, reduce the time range to request less data every evaluation cycle.
Change the default evaluation time out. The default is set at 30 seconds. To increase the default evaluation timeout, open a support ticket from the Cloud Portal. Note that this should be a last resort, because it may affect the performance of all alert rules and cause missed evaluations if the timeout is too long.
Keep last state
The “Keep Last State” option helps mitigate temporary data source issues, preventing alerts from unintentionally firing, resolving, and re-firing.
However, in situations where strict monitoring is critical, relying solely on the “Keep Last State” option may not be appropriate. Instead, consider using an alternative or implementing additional alert rules to ensure that issues with prolonged data source disruptions are detected.
grafana_state_reason
annotation
Occasionally, an alert instance may be in a state that isn’t immediately clear to everyone. For example:
- Stale alert instances in the
Alerting
state transition to theNormal
state when the series disappear. - If “no data” handling is configured to transition to a state other than
NoData
. - If “error” handling is configured to transition to a state other than
Error
. - If the alert rule is deleted, paused, or updated in some cases, the alert instance also transitions to the
Normal
state.
In these situations, the evaluation state may differ from the alert state, and it might be necessary to understand the reason for being in that state when receiving the notification.
The grafana_state_reason
annotation is included in these situations, providing the reason in the notifications that explain why the alert instance transitioned to its current state. For example:
- Stale alert instances in the
Normal
state include thegrafana_state_reason
annotation with the value MissingSeries. - If “no data” or “error” handling transitions to the
Normal
state, thegrafana_state_reason
annotation is included with the value NoData or Error, respectively. - If the alert rule is deleted or paused, the
grafana_state_reason
is set to Paused or RuleDeleted. For some updates, it is set to Updated.
Special alerts for NoData
and Error
When evaluation of an alert rule produces state NoData
or Error
, Grafana Alerting generates a new alert instance that have the following additional labels:
alertname
: EitherDatasourceNoData
orDatasourceError
depending on the state.datasource_uid
: The UID of the data source that caused the state.
You can manage these alerts like regular ones by using their labels to apply actions such as adding a silence, routing via notification policies, and more.
Alert rule state
The alert rule state is determined by the “worst case” state of the alert instances produced. For example, if one alert instance is Alerting
, the alert rule state is firing.
An alert rule can be in either of the following states:
State | Description |
---|---|
Normal | None of the alert instances returned by the evaluation engine is in a Pending or Alerting state. |
Pending | At least one alert instances returned by the evaluation engine is Pending . |
Firing | At least one alert instances returned by the evaluation engine is Alerting . |
Alert rule health
An alert rule can have one of the following health statuses:
State | Description |
---|---|
Ok | No error when evaluating an alerting rule. |
Error | An error occurred when evaluating an alerting rule. |
NoData | The absence of data in at least one time series returned during a rule evaluation. |
{status}, KeepLast | The rule would have received another status but was configured to keep the last state of the alert rule. |