This endpoint is paginated and retrieves lead time data.
OK response.
{- "filter": {
- "ratings": [
- "good",
- "slow",
- "needs_attention"
], - "calculation": "ticket_velocity",
- "work_items_type": "jira",
- "jira_issue_types": [
- "<Jira-issue-types>"
], - "limit_to_only_applicable_data": true,
- "integration_ids": [
- "<integration-ids>"
], - "jira_issue_resolved_at": {
- "$gt": "<epoch-time>",
- "$lt": "<epoch-time>"
}
}, - "ou_ids": [
- "518"
], - "across": "velocity"
}
{- "records": [
- {
- "id": "1",
- "lead_time": 120,
- "work_item": {
- "type": "Jira",
- "resolved_at": "2024-07-01T12:34:56Z"
}
}
], - "count": 1,
- "_metadata": {
- "page_size": 100,
- "page": 0,
- "has_next": false,
- "total_count": 1
}
}
This endpoint is paginated and retrieves deployment frequency data.
OK response.
{- "filter": {
- "time_range": {
- "$gt": 1708387200,
- "$lt": 1710892800
}
}, - "ou_ids": [
- "518"
]
}
{- "time_series": {
- "day": [
- {
- "key": 1708387200,
- "count": 0,
- "additional_key": "20-02-2024"
}, - {
- "key": 1708473600,
- "count": 1,
- "additional_key": "21-02-2024"
}
], - "week": [
- {
- "key": 1708300800,
- "count": 2,
- "additional_key": "19-02-2024"
}
], - "month": [
- {
- "key": 1706745600,
- "count": 10,
- "additional_key": "01-02-2024"
}, - {
- "key": 1709251200,
- "count": 18,
- "additional_key": "01-03-2024"
}
]
}, - "stats": {
- "count_per_day": 0.9333333333333333,
- "count_per_week": 6.533333333333333,
- "count_per_month": 28,
- "band": "HIGH",
- "total_deployment": 28
}
}
This endpoint is paginated and retrieves change failure rate data.
OK response.
{- "filter": {
- "time_range": {
- "$gt": 1708387200,
- "$lt": 1710892800
}
}, - "ou_ids": [
- "518"
]
}
{- "time_series": {
- "day": [
- {
- "key": 1708387200,
- "count": 2,
- "additional_key": "20-02-2024"
}, - {
- "key": 1708473600,
- "count": 2,
- "additional_key": "21-02-2024"
}
], - "week": [
- {
- "key": 1708300800,
- "count": 9,
- "additional_key": "19-02-2024"
}
], - "month": [
- {
- "key": 1706745600,
- "count": 18,
- "additional_key": "01-02-2024"
}, - {
- "key": 1709251200,
- "count": 33,
- "additional_key": "01-03-2024"
}
]
}, - "stats": {
- "failure_rate": 51,
- "band": "LOW",
- "total_deployment": 100,
- "is_absolute": false
}
}
This endpoint retrieves Mean Time to Restore (MTTR) data for DORA metrics.
OK response.
{- "filter": {
- "ratings": [
- "good",
- "slow",
- "needs_attention"
], - "calculation": "ticket_velocity",
- "work_items_type": "jira",
- "limit_to_only_applicable_data": true,
- "integration_ids": [
- "<INTEGRATION_ID>"
]
}, - "ou_ids": [
- "<OU_ID>"
], - "across": "velocity",
- "widget_id": "<WIDGET_ID>"
}
{- "mean_time": 4.5,
- "unit": "hours",
- "band": "MEDIUM",
- "total_incidents": 20
}