Forum Discussion
Has anyone implemented the DORA metrics on top of Azure Devops Services?
We use Azure DevOps Server 2020 on-prem. Specifically, Azure Git Repos and Azure Pipelines.
Now we would like to collect the DORA metrics, but first would like to check if anyone using Azure DevOps has done it already.
Maybe there is an extension that helps implement it. Maybe 3rd party integration. In general, sharing your experience with DORA metrics and Azure DevOps may be very valuable.
Thank you.
10 Replies
- SirWayneCopper Contributor
Hey markkharitonov
Did you find something or an example of how you implemented it?
- JashmanCopper ContributorHey markkharitonov. Hope you are well. Did you manage to set up and implement the DORA metrics on Azure DevOps? I am working on something similar and would like to get some insights on what others have done. Let me know your thoughts. Thanks
- markkharitonovCopper Contributor
Jashman We did not actually implement the DORA metrics. Instead we created a build that examines all the release deployments and builds that have happened since the last scan using the REST API and then sends the information to a dedicated AppInsights bucket.
We do some kind of data massaging to better suite our needs. Once the data is in AppInsights we have some dashboards on top of it.
The build is scheduled to run every 4 hours.
So that was our in-house solution.
- KenVinTXCopper ContributorHello Mark,
I am looking to do the same in Azure DevOps projects and am curious as to what script you used to hit the API and pull back the info you needed. I would like to insert your pull after a deployment to each environment in a release pipeline. So my pull would be more often than yours. Any help, would be greatly appreciated. Thx!