mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
https://linear.app/unleash/issue/2-3979/add-edge-instances-to-self-reported-instance-stats Adds edge instances to instance stats.
22 lines
527 B
TypeScript
22 lines
527 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* The rounded up average number of edge instances in the last month and month before last
|
|
*/
|
|
export type InstanceAdminStatsSchemaEdgeInstances = {
|
|
/**
|
|
* The rounded up average number of edge instances in the last month
|
|
* @minimum 0
|
|
*/
|
|
lastMonth?: number;
|
|
/**
|
|
* The rounded up average number of edge instances in the month before last
|
|
* @minimum 0
|
|
*/
|
|
monthBeforeLast?: number;
|
|
};
|