SLO + error budget per application
You want to know: how many minutes of downtime do we have 'in budget' this month? And how fast are we burning it at this rate?
- Sidebar → Apps → click your application
- SLO tab → 'Define SLO' → target 0.999 + 30 days
- Burn-down sparkline appears in the same tab
- 'Embed badge' button for your README
↳ SLO history is CSV-exportable for sprint reviews. Burn rate > 2.0 in the last hour = freeze deploys.
Same via API (bash) — for automation
curl -X POST https://app.monsys.ai/api/v1/apps/<id>/slo \
-H "Authorization: Bearer $TOKEN" \
-d '{
"target": 0.999,
"window_days": 30,
"minimum_data": 0.95
}'
# /operations/mttr now shows: rolling 30d uptime,
# error budget remaining (minutes), burn-down sparkline,
# days-until-budget-exhausted if you keep burning.