1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/openapi/models/bulkMetricsSchema.ts

18 lines
689 B
TypeScript
Raw Normal View History

/**
2023-03-15 13:30:07 +01:00
* Generated by Orval
* Do not edit manually.
2023-03-15 13:30:07 +01:00
* See `gen:api` script in package.json
*/
import type { BulkRegistrationSchema } from './bulkRegistrationSchema';
2023-03-10 09:36:31 +01:00
import type { ClientMetricsEnvSchema } from './clientMetricsEnvSchema';
/**
* A batch of metrics accumulated by Edge (or other compatible applications). Includes both application registrations as well usage metrics from clients
*/
export interface BulkMetricsSchema {
2023-06-14 14:40:24 +02:00
/** A list of applications registered by an Unleash SDK */
applications: BulkRegistrationSchema[];
2023-06-14 14:40:24 +02:00
/** a list of client usage metrics registered by downstream providers. (Typically Unleash Edge) */
metrics: ClientMetricsEnvSchema[];
}