This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project,
feel free to reach out to us!Overview
SLO error budget alerts are threshold based and notify you when a certain percentage of your SLO’s error budget has been consumed. For example, alert me if 75% of the error budget for my 7-day target is consumed. Warn me if 50% is consumed (optional).
Error budget alerts are available for the following SLO types:
For a description of key terminology around SLOs, including error budgets, see Service Level Objectives.
Monitor creation
- Navigate to the SLO status page.
- Create a new SLO or edit an existing one, then click the Save and Set Alert button. For existing SLOs, you can also click the Set up Alerts button in the SLO detail side panel to take you directly to the alert configuration.
- Select the Error Budget tab in Step 1: Setting alerting conditions.
- Set an alert to trigger when the percentage of the error budget consumed is above the
threshold
.
over the past target
number of days. - Add Notification information in the Configure notifications and automations section.
- Click the Create & Set Alert button on the SLO configuration page.
Alerting for SLOs with groups
For Time Slice SLOs containing groups, you can set error budget alerts based on the SLO groups or the overall SLO. If you alert based on the groups, you can confiure the alert aggregation to use simple or multi alerts. For metric-based and monitor-based SLOs, you can only set error budget alerts based on the overall SLO.
You can create SLO error budget alerts using the create-monitor API endpoint. Below is an example query for an SLO monitor, which alerts when more than 75% of the error budget of an SLO is consumed. Replace slo_id with the alphanumeric ID of the SLO you wish to configure a burn rate alert on and replace time_window with one of 7d, 30d or 90d - depending on which target is used to configure your SLO:
error_budget("slo_id").over("time_window") > 75
In addition, SLO error budget alerts can also be created using the datadog_monitor resource in Terraform. Below is an example .tf
for configuring an error budget alert for a metric-based SLO using the same example query as above.
For provider versions v2.7.0 or earlier and v2.13.0 or later
Note: SLO error budget alerts are only supported in Terraform provider v2.7.0 or earlier and in provider v2.13.0 or later. Versions between v2.7.0 and v2.13.0 are not supported.
resource "datadog_monitor" "metric-based-slo" {
name = "SLO Error Budget Alert Example"
type = "slo alert"
query = <<EOT
error_budget("slo_id").over("time_window") > 75
EOT
message = "Example monitor message"
monitor_thresholds {
critical = 75
}
tags = ["foo:bar", "baz"]
}
Further reading
Más enlaces, artículos y documentación útiles: