**SLO (Service Level Objective):** Target (99.9% availability) **SLI (Service Level Indicator):** Measurement (actual 99.95%) **Error Budget:** (1 - SLO) × time (0.1% × month = 43 minutes)
Scanned 9/10/2026
Install to Claude Code
npx -y skills add snoodleboot-io/prompticorn --skill minimal --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Minimal?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/snoodleboot-io-minimal-cd9b10ca)More formats (shields.io, HTML) on the badges page.
# SLO/SLI Definition (Minimal)
## Key Terms
**SLO (Service Level Objective):** Target (99.9% availability)
**SLI (Service Level Indicator):** Measurement (actual 99.95%)
**Error Budget:** (1 - SLO) × time (0.1% × month = 43 minutes)
## Defining SLOs
```
API Service SLO:
- Availability: 99.9% (43 min/month downtime)
- Latency: p95 < 200ms
- Error rate: < 0.1%
```
## Measuring SLIs
```promql
# Availability SLI
sum(rate(http_requests_total{status="200"}[30d])) /
sum(rate(http_requests_total[30d]))
# Latency SLI
histogram_quantile(0.95,
rate(http_request_duration_seconds_bucket[30d])
)
```
## Error Budget Tracking
```
Monthly budget: 43 minutes downtime
Consumed so far: 8 minutes (19%)
Remaining: 35 minutes (81%)
Safe to deploy: YES
```
## Common SLOs by Industry
| Type | SLO | Budget/Month |
|------|-----|--------------|
| Internal tool | 99.0% | 7.2 hours |
| SaaS | 99.9% | 43 minutes |
| Financial | 99.99% | 4 minutes |
| Infrastructure | 99.999% | 26 seconds |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.