Development Metrics
API endpoints for development time and process metrics
Development Metrics
Development metrics focus on the time spent in different phases of the development process, helping teams understand and optimize their development workflow.
Available Metrics
Time spent coding
Time between commit and PR open
Time from commit to PR open
Number of reviews
Time between PR open and first review
Time between first review and merge
Total time spent in review
Time spent on rework after review
Full cycle time from commit to merge
Cycle Time Metric
This example demonstrates how to retrieve the cycle time metric, which measures the full development cycle from initial commit to merge.
Review Time Metric
This example demonstrates how to retrieve the review time metric, which measures the total time spent in the review phase.
Parameter Notes
For development metrics, the following date fields are available:
created_at
: For metrics related to the pull request creation timemerged_at
: For metrics related to the pull request merge time (best for cycle time)first_review_at
: For metrics related to pull request first review time
Metrics that are not count based can be aggregated using the following method:
sum
,max
,min
,avg
Common Use Cases
- Track Cycle Time Trends: Monitor how development cycle time changes over time
- Identify Bottlenecks: Find which part of the development process takes the longest
- Compare Team Performance: Compare cycle times across different teams or repositories
- Set Performance Goals: Establish baseline metrics and set improvement goals