mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-12 13:48:35 +02:00
18 lines
656 B
TypeScript
18 lines
656 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { RequestsPerSecondSchemaDataResultItem } from './requestsPerSecondSchemaDataResultItem';
|
|
import type { RequestsPerSecondSchemaDataResultType } from './requestsPerSecondSchemaDataResultType';
|
|
|
|
/**
|
|
* The query result from prometheus
|
|
*/
|
|
export type RequestsPerSecondSchemaData = {
|
|
/** An array of values per metric. Each one represents a line in the graph labeled by its metric name */
|
|
result?: RequestsPerSecondSchemaDataResultItem[];
|
|
/** Prometheus compatible result type. */
|
|
resultType?: RequestsPerSecondSchemaDataResultType;
|
|
};
|