Multiple Metrics
Retrieve multiple metrics in a single API request
Get Multiple Metrics
The get-multiple-metrics
endpoint allows you to retrieve multiple different metrics in a single API request, which is useful for dashboards and reports.
Endpoint: POST /metrics/v2/get-multiple-metrics
Authentication Required: Yes
Request Format
Parameter Details
Array of metric types to retrieve. You can include any of the available metrics from the different categories.
Example: ["cycle-time", "pull-requests-count", "completed-issues-count"]
Object mapping each metric to its minimum value threshold.
Example:
Object mapping each metric to the date field to use for time-based calculations.
Example:
Object mapping each metric to the aggregation method to use.
Example:
Response Format
The response contains an array of results, with each result including the metric name, value, and group by values:
Example: Team Performance Dashboard
This example demonstrates retrieving multiple metrics for a team performance dashboard:
Example: Repository Comparison
This example demonstrates retrieving multiple metrics to compare different repositories:
Best Practices
- Limit the number of metrics: Request only the metrics you need to avoid performance issues.
- Use consistent date fields: When possible, use the same date field for related metrics.
- Choose appropriate aggregations: Different metrics may require different aggregation methods.
- Consider using time series data: For dashboard visualizations, setting
time_series_data
totrue
provides data formatted for charts. - Include previous period data: Setting
include_previous_period
totrue
provides comparison data for trend analysis.