What does an SLO tracking dashboard show in Metabase?
An SLO tracking dashboard shows reliability against explicit, published targets: how much error budget each service has left, how fast it's burning, and where the breaches are. It's built from SLO definitions and rollups synced from tools such as Honeycomb, Datadog, Prometheus, and Grafana.
Which cards belong on an SLO tracking dashboard?
- Error budget remaining by service (bar)
- Budget burn rate, trailing 28 days (line)
- SLO compliance by service vs. target (table)
- Breaches this quarter with dates and duration (table)
- Fast-burn services — budget gone before period end (table)
- Compliance by service tier (bar)
- Budget spent on planned vs. unplanned work where tracked
What data does the dashboard need?
slo_definitions— service, objective (target percentage), window, and indicator type.service_health_rollups(or the source tool's SLO status API results) — daily good/total counts per SLO.- Optional
incidentsto attribute budget burn to specific events.
How do you build it?
- Publish the targets first — an SLO dashboard without agreed objectives is just an availability chart.
- Sync daily SLO status from the source (most tools expose budget and burn via API) or compute it from good/total rollups.
- Compute budget consumed as (1 − actual) ÷ (1 − target) so 100% means the budget is gone.
- Build the budget-remaining bar and fast-burn table first; add breach history and tier views next.
Example card SQL
WITH actuals AS (
SELECT
service_name,
slo_target,
100.0 * SUM(successful_requests) / NULLIF(SUM(total_requests), 0)
AS actual_pct
FROM service_health_rollups
WHERE window_start >= CURRENT_DATE - INTERVAL '28 days'
GROUP BY service_name, slo_target
)
SELECT
service_name,
slo_target,
ROUND(actual_pct, 3) AS actual_pct,
ROUND(
100.0 * (100.0 - actual_pct) / NULLIF(100.0 - slo_target, 0), 1
) AS error_budget_consumed_pct
FROM actuals
ORDER BY error_budget_consumed_pct DESC;Related
Metrics
Integrations
Dashboards
FAQ
What is an SLO tracking dashboard?
What data do you need to track SLOs in Metabase?
slo_definitions — service, objective, window, and indicator type — and daily good/total counts per SLO, either from a service_health_rollups table or from the SLO status APIs that Honeycomb, Datadog, and Grafana expose. Add an optional incidents table to attribute budget burn to specific events. If you already compute availability from Prometheus rollups, the same data works here.What's the difference between SLO compliance and availability?
Why track burn rate and not just the budget?
How do you calculate an error budget?
service_health_rollups. Track consumption as the trend and pair it with SLO compliance and error rate for the full picture.