My HNG Journey. Stage Six: Leveraging Python to Expose DORA Metrics

RMAG news

Introduction

For stage 6, we were tasked with exposing DORA (DevOps Research and, I recently embarked on a project to expose DORA (DevOps Research and Assessment) metrics using Python. This experience taught me valuable lessons about DevOps practices and the intricacies of working with APIs. In this article, I’ll walk you through the process, explain what each metric means, and highlight some common pitfalls to watch out for.

What are DORA Metrics?
Before we dive into the code, let’s briefly discuss what DORA metrics are:

Deployment Frequency: How often an organization successfully releases to production.
Lead Time for Changes: The time it takes a commit to get into production.
Change Failure Rate: The percentage of deployments causing a failure in production.
Time to Restore Service: How long it takes to recover from a failure in production.

These metrics help teams measure their software delivery performance and identify areas for improvement.

Getting Started
To begin exposing these metrics, you’ll need:

Python 3.7 or higher
A GitHub account and personal access token
Basic knowledge of GitHub’s API

First, install the necessary libraries:

pip install requests prometheus_client

The Code Structure
I structured my Python script as a class called DORAMetrics. Here’s a simplified version of its initialization:

class DORAMetrics:
def __init__(self, github_token, repo_owner, repo_name):
self.github_token = github_token
self.repo_owner = repo_owner
self.repo_name = repo_name
self.base_url = fhttps://api.github.com/repos/{repo_owner}/{repo_name}
self.headers = {
Authorization: ftoken {github_token},
Accept: application/vnd.github.v3+json
}

# Define Prometheus metrics
self.deployment_frequency = Gauge(dora_deployment_frequency, Deployment Frequency (per day))
self.lead_time_for_changes = Gauge(dora_lead_time_for_changes, Lead Time for Changes (hours))
self.change_failure_rate = Gauge(dora_change_failure_rate, Change Failure Rate)
self.time_to_restore_service = Gauge(dora_time_to_restore_service, Time to Restore Service (hours))

This setup allows us to interact with the GitHub API and create Prometheus metrics for each DORA metric.

Fetching Data from GitHub
One of the most challenging aspects was retrieving the necessary data from GitHub. Here’s how I fetched deployments:

def get_deployments(self, days=30):
end_date = datetime.now()
start_date = end_date timedelta(days=days)

url = f{self.base_url}/deployments
params = {since: start_date.isoformat()}
deployments = []

while url:
response = requests.get(url, headers=self.headers, params=params)
response.raise_for_status()
deployments.extend(response.json())
url = response.links.get(next, {}).get(url)
params = {}

return deployments

This method handles pagination, ensuring we get all deployments within the specified time frame.

Calculating DORA Metrics
Let’s look at how I calculated the Deployment Frequency:

def get_deployment_frequency(self, days=30):
deployments = self.get_deployments(days)
return len(deployments) / days

This simple calculation gives us the average number of deployments per day over the specified period.

Lead Time for Changes
Calculating the Lead Time for Changes was more complex. It required correlating commits with their corresponding deployments:

def get_lead_time_for_changes(self, days=30):
commits = self.get_commits(days)
deployments = self.get_deployments(days)

lead_times = []
for commit in commits:
commit_date = datetime.strptime(commit[commit][author][date], %Y-%m-%dT%H:%M:%SZ)
for deployment in deployments:
if deployment[sha] == commit[sha]:
deployment_date = datetime.strptime(deployment[created_at], %Y-%m-%dT%H:%M:%SZ)
lead_time = (deployment_date commit_date).total_seconds() / 3600 # in hours
lead_times.append(lead_time)
break

return sum(lead_times) / len(lead_times) if lead_times else 0

This method calculates the time difference between each commit and its corresponding deployment. It’s important to note that not all commits may result in a deployment, so we only consider those that do. The final result is the average lead time in hours.
One challenge I faced here was matching commits to deployments. In some cases, a deployment might include multiple commits, or a commit might not be deployed immediately. I had to make assumptions based on the available data, which might need adjustment for different development workflows.

Change Failure Rate
Determining the Change Failure Rate required analyzing the status of each deployment:

def get_change_failure_rate(self, days=30):
deployments = self.get_deployments(days)

if not deployments:
return 0

total_deployments = len(deployments)
failed_deployments = 0

for deployment in deployments:
status_url = deployment[statuses_url]
status_response = requests.get(status_url, headers=self.headers)
status_response.raise_for_status()
statuses = status_response.json()

if statuses and statuses[0][state] != success:
failed_deployments += 1

return failed_deployments / total_deployments if total_deployments > 0 else 0

This method counts the number of failed deployments and divides it by the total number of deployments. The challenge here was defining what constitutes a “failed” deployment. I considered a deployment failed if its most recent status was not “success”.
It’s worth noting that this approach might not capture all types of failures, especially those that occur after a successful deployment. In a production environment, you might want to integrate with your monitoring or incident management system for more accurate failure detection.

Exposing Metrics with Prometheus
To make these metrics available for Prometheus to scrape, I used the prometheus_client library:

from prometheus_client import start_http_server, Gauge

# In the main execution block
start_http_server(8000)

# Update metrics every 5 minutes
while True:
dora.update_metrics()
time.sleep(300)

This starts a server on port 8000 and updates the metrics every 5 minutes.

Common Pitfalls
During this project, I encountered several challenges:

API Rate Limiting: GitHub limits the number of API requests you can make. I had to implement pagination and be mindful of how often I updated metrics.
Token Permissions: Ensure your GitHub token has the necessary permissions to read deployments and commits.
Data Interpretation: Determining what constitutes a “deployment” or “failure” can be subjective. I had to make assumptions based on the available data.
Time to Restore Service: This metric was particularly challenging as it typically requires data from an incident management system, which isn’t available through GitHub’s API alone.

Conclusion
Exposing DORA metrics using Python was an enlightening experience. It deepened my understanding of DevOps practices and improved my skills in working with APIs and data processing.
Remember, these metrics are meant to guide improvement, not as a stick to beat teams with. Use them wisely to foster a culture of continuous improvement in your development process.
Thank you for reading ❤

Please follow and like us:
Pin Share