v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
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

versioninteger required

The version of this schema

maturitystring required

The maturity level of this API (alpha, beta, stable, deprecated)

featureNamestring required

The name of the feature

seenApplicationsstring[] required

A list of applications seen using this feature

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"
  ]
}