Skip to main content

Deployment Frequency

How often production deployments happen — and how to interpret the trend.

Updated yesterday

Deployment Frequency measures how often production deployments occur in a selected period. It's one of the four DORA metrics and the simplest indicator of release cadence.

What it measures

Total successful production deployments per unit of time — typically per day, week, or month. Higher frequency generally signals smaller batches, better automation, and tighter feedback loops.

How Leanmote calculates it

deployment_frequency = total_successful_production_deployments / period_length

  • Numerator counts production deployments marked successful by your CI/CD or deployment events.

  • Denominator uses an explicit period length (day, week, month) so trend lines are comparable.

  • Available views: per team, per service, and global.

How to interpret it

  • Trending up — usually healthy. Often paired with shorter Lead Time.

  • Trending down while backlog stays high — a red flag for a delivery bottleneck.

  • Flat with rising failure rate — you've hit a quality ceiling. Investigate test coverage or release process.

What to do about it

  • Smaller batch sizes (fewer commits per PR, fewer features per release) typically lift this metric quickly.

  • Reduce manual approval steps. Each gate is a multiplicative cost.

  • Improve test reliability so deploys aren't blocked by flaky checks.

Related metrics

  • Lead Time for Changes

  • Change Failure Rate

  • Mean Time to Recovery

  • DORA metrics overview

Did this answer your question?