mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
21 lines
744 B
TypeScript
21 lines
744 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ClientMetricsSchemaBucket } from './clientMetricsSchemaBucket';
|
|
|
|
/**
|
|
* Client usage metrics, accumulated in buckets of hour by hour by default
|
|
*/
|
|
export interface ClientMetricsSchema {
|
|
/** The name of the application that is evaluating toggles */
|
|
appName: string;
|
|
/** Holds all metrics gathered over a window of time. Typically 1 hour wide */
|
|
bucket: ClientMetricsSchemaBucket;
|
|
/** Which environment the application is running in */
|
|
environment?: string;
|
|
/** A [(somewhat) unique identifier](https://docs.getunleash.io/reference/sdks/node#advanced-usage) for the application */
|
|
instanceId?: string;
|
|
}
|