DORA Metrics Communication
5 exercises — master the vocabulary for discussing DORA engineering performance metrics in team reviews, executive reports, and engineering health conversations.
0 / 5 completed
DORA metrics vocabulary quick reference
- Deployment Frequency — how often code reaches production; velocity metric
- Lead Time for Changes — commit → production; velocity metric
- MTTR (Mean Time to Restore) — detection → service restored; stability metric
- Change Failure Rate — % of deployments causing a degraded service; stability metric
- Elite tier — deploy multiple times/day, lead time <1h, MTTR <1h, CFR <5%
- Trunk-based development — all commits to main branch; enables high deployment frequency
- Canary deployment — incremental rollout to a subset of traffic before full release
1 / 5
During an engineering all-hands, the VP of Engineering says: "We track all four DORA metrics." What are the four DORA metrics, and which two are velocity metrics versus stability metrics?
DORA (DevOps Research and Assessment) metrics are the industry-standard framework for measuring engineering delivery performance, validated by research across thousands of organisations.
DORA performance tiers (2023 State of DevOps Report):
Key vocabulary:
• DORA — DevOps Research and Assessment; research org founded by Nicole Forsgren, Jez Humble, Gene Kim
• Velocity metric — measures how fast value is delivered to production
• Stability metric — measures how reliably the system operates after changes
| Metric | Category | Measures |
|---|---|---|
| Deployment Frequency | Velocity | How often code is deployed to production |
| Lead Time for Changes | Velocity | Time from commit to running in production |
| Mean Time to Restore (MTTR) | Stability | Time to restore service after an incident |
| Change Failure Rate | Stability | % of deployments causing a service degradation |
DORA performance tiers (2023 State of DevOps Report):
| Tier | Deploy Freq | Lead Time | MTTR | CFR |
|---|---|---|---|---|
| Elite | Multiple/day | <1 hour | <1 hour | <5% |
| High | 1/day–1/week | 1 day | <1 day | 5–10% |
| Medium | 1/week–1/month | 1 week–1 month | 1 day–1 week | 10–15% |
| Low | <1/month | 1–6 months | >1 week | >15% |
Key vocabulary:
• DORA — DevOps Research and Assessment; research org founded by Nicole Forsgren, Jez Humble, Gene Kim
• Velocity metric — measures how fast value is delivered to production
• Stability metric — measures how reliably the system operates after changes