v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Metrics

Get application overview

Returns an overview of the specified application (appName).

get/api/admin/metrics/applications/{appName}/overview

Path parameters

appNamestring required

Response

applicationOverviewSchema

projectsstring[] required

The list of projects the application has been using.

featureCountnumber required

The number of features the application has been using.

Example response

{
  "projects": [
    "default",
    "payment"
  ],
  "featureCount": 5,
  "environments": [
    {
      "name": "production",
      "instanceCount": 5,
      "sdks": [
        "unleash-client-node:5.4.0",
        "unleash-client-node:5.3.0"
      ],
      "frontendSdks": [
        "unleash-client-js:3.7.5"
      ],
      "backendSdks": [
        "unleash-client-node:5.4.0"
      ],
      "lastSeen": "2023-04-19T08:15:14.000Z",
      "issues": {
        "missingFeatures": [
          "feature1",
          "feature2"
        ],
        "outdatedSdks": [
          "unleash-client-node:5.4.0",
          "unleash-client-node:5.3.0"
        ]
      }
    }
  ],
  "issues": {
    "missingStrategies": [
      "feature1",
      "feature2"
    ]
  }
}