v1
latestOpenAPI 3.0.32026-07-172411.7 KBQuery data points for a given DORA Metric
Returns the data points for the requested metric according to the informed filters. The below are the metrics currently supported:
| Metric Type | Description |
|---|---|
| df_average | Deployment frequency (average), aggregated according to the aggregation parameter |
| df_count | Amount of Deployments, aggregated according to the aggregation parameter |
| mltc | Median Lead Time for Changes, aggregated according to the aggregation parameter |
| cfr | Change Failure Rate, aggregated according to the aggregation parameter |
| mttr | Mean Time to Recovery, aggregated according to the aggregation parameter |
Query parameters
required. Specify the type of metric the data points should be retrieved to
optional. Specify how the data points should be aggregated. If not informed, it will default to weekly
optional. Specify the project/repo/component to which the data points should be retrieved
optional. Specify the team to which the data points should be retrieved
optional. Date/time from when the results should be filtered. If not informed, it will assume 6 months from the current date/time Should be before the 'to' param, and should always be paired with the 'to' param.
optional. Date/time to when the results should be filtered. If not informed, it will assume the current date/time Should be before the current date/time and after the 'from' param, and should always be paired with the 'from' param.
Headers
Unique identifer associated with the request
Response
Success
Example response
{
"aggregation": "weekly",
"dataPoints": [
{
"value": 103.5
}
]
}