actionable continuous delivery metrics
play

ACTIONABLE CONTINUOUS DELIVERY METRICS Suzanne Prince, Head of - PowerPoint PPT Presentation

ACTIONABLE CONTINUOUS DELIVERY METRICS Suzanne Prince, Head of Product, ThoughtWorks Products Head of Product for ThoughtWorks Products 13+ years experience with agile, continuous integration and continuous delivery practices Tweeting


  1. ACTIONABLE CONTINUOUS DELIVERY METRICS Suzanne Prince, Head of Product, ThoughtWorks Products

  2. Head of Product for ThoughtWorks Products 13+ years experience with agile, continuous integration and continuous delivery practices Tweeting @pm_suzie

  3. over 20 years 4000 people 40 offices 14 countries

  4. THIS TALK

  5. THIS TALK • What is continuous delivery (CD)

  6. THIS TALK • What is continuous delivery (CD) • Explain why you should measure your continuous delivery process

  7. THIS TALK • What is continuous delivery (CD) • Explain why you should measure your continuous delivery process • Share what continuous delivery metrics you should measure

  8. THIS TALK • What is continuous delivery (CD) • Explain why you should measure your continuous delivery process • Share what continuous delivery metrics you should measure • Review some scenarios to explain what certain metrics reveal about your continuous delivery process

  9. THIS TALK • What is continuous delivery (CD) • Explain why you should measure your continuous delivery process • Share what continuous delivery metrics you should measure • Review some scenarios to explain what certain metrics reveal about your continuous delivery process • Questions

  10. CONTINUOUS DELIVERY

  11. “Continuous Delivery is the ability to get changes of all types —including new features, con fi guration changes, bug fi xes and experiments—into production, or into the hands of users, safely and quickly in a sustainable way.” - Jez Humble, continuousdelivery.com

  12. BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST

  13. BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST

  14. BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST

  15. BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST

  16. BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST

  17. BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST BUILD & UNIT INTEGRATION REGRESSION MATERIAL SMOKE TESTS UAT PROD TESTS TESTS TEST

  18. WHY MEASURE

  19. FEEDBACK AND IMPROVEMENT ACT PLAN CHECK DO

  20. PREDICTABILITY 26 19.5 13 6.5 0 Story 1 2 3 4 5 6 7 8 9 10 Cycle time (days) Trend

  21. BENCHMARKING High performers Median performers Low performers On demand (multiple Deployment frequency 1/week - 1/month 1/week - 1/month deploys per day) Lead time for changes <1hr 1 week - 1 month 1 week - 1 month Change failure rate <15% <15% 31-45% MTTR <1hr <1 day 1 day - 1 week Modi fi ed from Forsgren PhD, Nicole. Accelerate: The Science of Lean Software and DevOps: Building and Scaling High Performing Technology Organizations

  22. WHAT TO MEASURE

  23. WHAT TO MEASURE •Throughput •Failure rate •Deployment frequency •Defect fi x times •Cycle time •Escaped defects •Lead time •Total regression test time •Mean time between failures •Number of branches in version control •Mean time to recover (MTTR) •Production outages during deployment 


  24. WHAT TO MEASURE • Throughput • Failure rate • Deployment frequency • Defect fi x times • Cycle time • Escaped defects • Lead time • Total regression test time • Mean time between failures • Number of branches in version • Mean time to recover (MTTR) control • Production outages during deployment 


  25. THROUGHPUT How often does code reach a certain point in the CD pipeline? E.g. How often do you deploy?

  26. THROUGHPUT THROUGHPUT: 25% DAYS

  27. CYCLE TIME How long does it take to go from one point to the to another point in the CD pipeline? E.g. How long does it take to go from code commit to code successfully running in production ?

  28. CYCLE TIME THROUGHPUT: 25% CYCLE TIME: 3 DAYS DAYS

  29. FAILURE RATE What percentage of changes results a failure? E.g. What percentage of changes break builds? What percentage of deployments result in a service outage?

  30. FAILURE RATE THROUGHPUT: 25% CYCLE TIME: 3 DAYS FAILURE RATE: 75% DAYS

  31. MEAN TIME TO RECOVER (MTTR) How long does it generally take to fi x a failure? E.g. How long does it take to fi x a broken build? How long does it take to restore service during a deployment failure?

  32. MTTR MTTR THROUGHPUT: 25% CYCLE TIME: 3 DAYS FAILURE RATE: 75% DAYS MTTR: 2 DAYS

  33. WHAT TO MEASURE • Throughput • Failure rate • Deployment frequency • Defect fi x times • Cycle time • Escaped defects • Lead time • Total regression test time • Mean time between failures • Number of branches in version • Mean time to recover (MTTR) control • Production outages during deployment 


  34. CAUTION! Beware of: • vanity metrics • unclear metrics • invisible metrics • comparing across teams • the Hawthorne E ff ect or observer e ff ect • gathering “all the data” and not using it

  35. VANITY METRICS https://res.infoq.com/articles/Continuous-Delivery-Maturity-Model/en/resources/ fi g1large.jpg

  36. ACT ON YOUR METRICS

  37. LOW THROUGHPUT

  38. LOW THROUGHPUT Causes • Slow builds • Builds that fail often • Long lived feature branches How to resolve • Review cycle time and failure rates • Consider using feature toggles and short-lived branches

  39. SLOW CYCLE TIME

  40. SLOW CYCLE TIME Causes: • slow individual builds • delays due to manual approvals How to resolve: • speed up slow steps by rewriting or parallelizing • automate or simplify manual processes

  41. HIGH FAILURE RATE

  42. HIGH FAILURE RATE Causes • genuine failures • fl aky tests • tests too slow or di ffi cult to run locally before check-in How to resolve • fail fast • make it easier to run tests locally

  43. HIGH MTTR

  44. HIGH MTTR Causes • no-one cares • issues are hard to resolve • combination with high failure rate and/or slow cycle time How to resolve • revert of failing commits • stop the line

  45. FEEDBACK CYCLES ACT PLAN CHECK DO

  46. RECAP

  47. RECAP • Metrics are important to set goals, improve and predict • Start with throughput, cycle time, failure rate and MTTR • Be thoughtful about what you measure • Look for connections between metrics • Understand your context • Review, change and improve your process • Consider using tools to help capture and visualize data 


  48. ADDITIONAL RESOURCES • Download GoCD - https://www.gocd.org/ • GoCD Analytics plugin - https://www.gocd.org/analytics/ • More events and talks - https://www.gocd.org/events/ • 4 important metrics for continuous delivery - https://www.gocd.org/ 2018/01/31/continuous-delivery-metrics/ • Why measure your CD process https://www.gocd.org/2018/10/30/measure- continuous-delivery-process/

  49. QUESTIONS ?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend