Skip to main content

Get application environment instances

GET <your-unleash-url>/api/admin/metrics/instances/:appName/environment/:environment

Authorization

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

Returns an overview of the instances for the given appName and environment that receive traffic.

Request

Path Parameters

  • appName string required
  • environment string required
Responses

applicationEnvironmentInstancesSchema

Schema
  • instances object[]required

    A list of instances

  • Array [
  • instanceId string required

    A unique identifier identifying the instance of the application running the SDK. Often changes based on execution environment. For instance: two pods in Kubernetes will have two different instanceIds

  • sdkVersion string

    An SDK version identifier. Usually formatted as "unleash-client-:"

  • clientIp string

    An IP address identifying the instance of the application running the SDK

  • lastSeen date-time

    The last time the application environment instance was seen

  • ]

Authorization

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

Request

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