Metrics
Last hour of usage and a list of applications that have reported seeing this feature flag
Separate counts for yes (enabled), no (disabled), as well as how many times each variant was selected during the last hour
get/api/admin/client-metrics/features/{name}
Path parameters
namestring required
Response
featureUsageSchema
Example response
{
"maturity": "stable",
"featureName": "my.special.feature",
"lastHourUsage": [
{
"featureName": "my.special.feature",
"appName": "accounting",
"environment": "development",
"timestamp": "2023-07-27T11:23:44Z",
"yes": 974,
"no": 50,
"variants": {
"variantA": 15,
"variantB": 25,
"variantC": 5
}
}
],
"seenApplications": [
"accounting",
"billing",
"booking"
]
}