Get application overview
GET/api/admin/metrics/applications/:appName/overview
Returns an overview of the specified application (appName
).
Request
Path Parameters
Responses
- 200
- 404
applicationOverviewSchema
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
The list of projects the application has been using.
["default","payment"]
The number of features the application has been using.
5
environments
object[]
required
The list of environments the application has been using.
Name of the application environment
production
The number of instances of the application environment
5
SDKs used in the application environment
["unleash-client-node:5.4.0","unleash-client-node:5.3.0"]
The last time the application environment was seen
2023-04-19T08:15:14.000Z
issues
object
required
This list of issues that might be wrong with the application
The list of features that are missing in Unleash
["feature1","feature2"]
The list of used SDKs that are outdated
["unleash-client-node:5.4.0","unleash-client-node:5.3.0"]
issues
object
required
This list of issues that might be wrong with the application
The list of strategies that are missing from Unleash
["feature1","feature2"]
{
"projects": [
"default",
"payment"
],
"featureCount": 5,
"environments": [
{
"name": "production",
"instanceCount": 5,
"sdks": [
"unleash-client-node:5.4.0",
"unleash-client-node:5.3.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"
]
}
}
The requested resource was not found.
- application/json
- Schema
- Example (from schema)
Schema
The ID of the error instance
9c40958a-daac-400e-98fb-3bb438567008
The name of the error kind
NotFoundError
A description of what went wrong.
Could not find the addon with ID "12345".
{
"id": "9c40958a-daac-400e-98fb-3bb438567008",
"name": "NotFoundError",
"message": "Could not find the addon with ID \"12345\"."
}