Multi-window burn-rate alerting, anything above 14.4x will eat the monthly budget in a day.
At a glance
The rate at which you’re consuming your error budget, expressed as a multiple of the budget-spend-rate that would land you exactly at the SLO target by month-end. 1x = on-track, 14.4x = monthly budget burns in a day, 36x = daily budget burns in 40 minutes. The Google SRE-style fast-burn signal that tells you whether you can afford another minute of degradation.
Calculation
Calculated automatically from your New Relic data. See the At a glance summary above for what the metric tracks and the worked example below for a typical reading.Worked example
A merchant has configured an SLO on thecheckout-api service: 99.9% availability, measured as the ratio of non-5xx responses to total responses over a rolling 30-day window. The 30-day error budget = 0.1% x total_requests. With ~12M checkout requests/month, the budget = 12,000 errors.
Reading the card at three points across an evening:
What 14.4x actually means. The 30-day budget is 0.1% of all requests. A burn rate of 14.4x over the past hour means 1.44% of requests in that hour failed, 14.4 times the rate the budget allows. If sustained for 24 hours:
14.4 x 0.1% x 12M / 30 days = 14.4 x 12,000 / 30 = 5,760 errors/day = 169,560 errors over 30 days, far above the 12,000 budget. The alert fires because the trajectory if the current rate continues is unrecoverable.
Why the multi-window check matters. A single bad 5-minute window can spike the 1h burn rate to 30x briefly even if the underlying 5m rate has already recovered. Multi-window alerting (must be >14.4x on both 5m and 1h before paging) prevents this kind of flutter. The Google SRE workbook recommends:
Conversion impact translation. With error rate at 1.58% on
checkout-api, ~158 customers per 10,000 requests are hitting a 5xx during checkout. At ~140 checkout requests / minute, that’s ~2.2 failed checkouts / minute, or ~133 / hour. At an average AOV of £85 and ~80% recovery probability (some customers retry), the irrecoverable revenue loss is 133 x £85 x 20% = £2,261 / hour. Sustained for 4 hours = ~£9,000 of GMV impact, plus reputational drag. The fast-burn alert is calibrated to fire well before this becomes catastrophic.
If the underlying issue resolves and the next 1h window settles to 0.4% error rate, the burn rate drops to 4x, still over budget but no longer fast-burn. The card returns to green when the 1h burn drops below 1x; until then the message is “you’re spending faster than you can rebuild”.
Sibling cards merchants should reference together
Reconciling against the vendor’s own dashboard
Where to look in New Relic:- Service Levels is the canonical screen. Each Service Level entity has a “Burn rate” tab that displays the same multi-window evaluation.
- Alerts & AI > Conditions for the alert configuration that backs the 14.4x threshold.
- Dashboards > “SLO overview” pre-built dashboard.
Cross-connector reconciliation:
NR Service Levels and Datadog SLOs implement the same Google SRE-workbook math. Burn rate calculations should be identical if the SLI definitions and SLO targets are aligned. Disagreements are real signal, not noise. Common causes: (a) one platform is computing on a slightly different event population (NR includes background workers, DD doesn’t); (b) one platform’s SLI thresholds are different (NR latency SLI at 1500ms, DD at 1000ms); (c) lookback window differs (one is 1h, other is 30m). Audit SLI definitions if cross-platform parity matters.
NR APM-based SLO and GA4-based real-user SLO will typically disagree by 1, 5x burn rate during incidents. APM SLO captures server-side; GA4 SLO captures customer-side. Both are legitimate; the gap reflects client-side overhead (CDN, browser, third-party scripts) that doesn’t appear in APM-instrumented Transaction events.