DORA metrics at Zoopla

DORA metrics at Zoopla

Hello Zoopligans, fellow Zoopla fans and techies around the world.

About two years ago, Zoopla started wondering how we could measure the overall improvements in performance in the engineering department. We were in the early stages of a program of work called Bedrock. Bedrock was all about making engineering capability more efficient and flexible in responding to the business needs.

After researching various options, we decided on the DORA metrics. They provided us with all the necessary insights to track our success, and benchmark ourselves against a definition of good.

What is DORA?

DORA is the acronym for the DevOps Research and Assessment group: they’ve surveyed more than 50,000 technical professionals worldwide to better understand how the technical practices, cultural norms, and management approach affect organisational performance.

See more in DevOps assessments, and in their book that summarises the findings: Accelerate.

What are the metrics Zoopla is using?

  • Lead time - Time between the first commit on a merge request to master and production deployment
  • Production deploy frequency - Number of successful production deployments / day
  • Mean Time To Recover - Time required from customer impact first started to removal of the customer impact
  • Change fail rate - For the primary application or service you work on, what percentage of changes to production or released to users result in degraded service (e.g., lead to service impairment or service outage) and subsequently require remediation (e.g., require a hotfix, rollback, fix forward, patch)
  • Time to onboard - Time required from the engineer who had joined the company, until their first commit is merged to master on a non-personal repository.

How do we understand the metrics?

  • Production deploy frequency - limiting amount of code going to production at once (limited batch size)
  • Lead time - reducing amount of blockers for developers
  • MTTR - improving speed of incident recovery
  • Change fail rate - improving quality focus
  • Time to onboard - how efficient is our onboarding process

Following the rules of lean:

  • Value is only released to production, once it leaves the factory floor (production deploy frequency)
  • Optimize Work In Progress (lead time)
  • Invest in SRE/automation (mean time to recover)
  • Practice kaizen (change fail rate)
  • Have efficient knowledge sharing and work allocation processes (time to onboard)

How are we collecting the metrics?

DORA workflow

We are using the following data sources:

  • Gitlab for deploy frequency, lead time, change fail rate and time to onboard
  • Blameless for mean time to recover (as recorded in incidents)
  • Jenkins for deploy frequency and change fail rate

The process is using APIs extensively. We also needed to come up with a standardised data schema to be able to meaningfully use the metrics. The raw data stored in the s3 bucket can be used in any visualization tool. For our own purposes we have decided to display them in a google spreadsheet. All of these required an extensive implementation effort. The whole flow is powered by modern python.

Some parts of our process are still not perfect. We are actively working to simplify the flows and standardize data sets.

How are the metrics used at Zoopla?

The dashboard is regularly reviewed by the senior engineering management. The metrics are on public display, and are discussed and reviewed in our monthly town hall meeting, and our fortnightly Ops Review. Each team is encouraged to reflect on the metrics as they plan their work, and consider improvements they could introduce.

The metrics also influence the decisions and prioritization. Just as importantly, they help us to transform our company culture.

In terms of improvements measured:

  • Production deployment frequency was improved from once in a week to multiple times per day (~40 deployments per day)
  • Lead time was improved from an average of 10 days to less than two days. (with many projects being close to 2-4h on average)
  • Mean time to recover - we have not measured it before, the main benefit for us is understanding what we need to improve. We are currently in the area of 1-3h on average for sev-0 or sev-1 issues and 24h on average, when we include sev-2 issues.
  • Change failure rate was about 60% before we started, it is now oscillating between ~1-5%
  • Time to onboard was over 20 days, and we have brought this down to around five days

The main cultural changes were:

  • We have automated the majority of our deployment pipelines
  • We have added a lot of automation to incident resolution, primarily by adding auto-scaling
  • We have trained our teams in incident response, and introduced an on-call rota
  • We have moved the bulk of our infrastructure management to a standardised Infra as Code (mainly terraform)
  • We have improved our onboarding process
  • We have improved our alerting, and partnered with New Relic to reduce investigation effort

We hold the ambition to join the elite performing group of organisations as defined by the State of DevOps report. Each day brings us closer to that goal.

What are our future plans?

On the technical side, we are working to improve automation of the metrics, to go away from our internal and bespoke metric collection model. We hope our partnership with New Relic will soon enable a much better solution.

On the DevOps/DORA culture side, we are providing regular talks and training to wider audiences (not only engineering), to establish DORA as a reference point in future product development. We are also making it a key point of our new consolidated engineering strategy.

We’ve found the DORA metrics helped us improve our software development and delivery processes. With these findings, organizations can make informed adjustments in their process workflows, automation, team composition, tools, and more. We recommend you try this in your organisation too.

Recommended reading