Skip to main content

Get application overview

GET <your-unleash-url>/api/admin/metrics/applications/:appName/overview

Authorization

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

Returns an overview of the specified application (appName).

Request

Path Parameters

  • appName string required
Responses

applicationOverviewSchema

Schema
  • projects string[] required

    The list of projects the application has been using.

  • featureCount number required

    The number of features the application has been using.

  • environments object[]required

    The list of environments the application has been using.

  • Array [
  • name string required

    Name of the application environment

  • instanceCount number required

    The number of instances of the application environment

  • sdks string[] required

    SDKs used in the application environment

  • lastSeen date-time nullable required

    The last time the application environment was seen

  • issues objectrequired

    This list of issues that might be wrong with the application

  • missingFeatures string[] required

    The list of features that are missing in Unleash

  • outdatedSdks string[] required

    The list of used SDKs that are outdated

  • ]
  • issues objectrequired

    This list of issues that might be wrong with the application

  • missingStrategies string[] required

    The list of strategies that are missing from Unleash

Authorization

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

Request

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