Skip to main content

Get an overview project dora metrics.

GET <your-unleash-url>/api/admin/projects/:projectId/dora

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

This endpoint returns an overview of the specified dora metrics

Request

Path Parameters

  • projectId string required
Responses

projectDoraMetricsSchema

Schema
  • projectAverage number

    The average time it takes a feature flag to be enabled in production. The measurement unit is days.

  • features object[]required

    An array of objects containing feature flag name and timeToProduction values. The measurement unit of timeToProduction is days.

  • Array [
  • name string required

    The name of a feature flag

  • timeToProduction number required

    The average number of days it takes a feature flag to get into production

  • ]

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
projectId — path required
curl / cURL
curl -L -X GET '<your-unleash-url>/api/admin/projects/:projectId/dora' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'