export interface PrometheusQueryRequest { /** * Unique identifier for the user's account */ accountId?: string; /** * connector reference */ connectorRef?: string; /** * End time for the data query in epoch seconds * @format int64 */ endTime: number; /** * Prometheus query to fetch metrics, with specific parameters and time range modifiers */ query: string; /** * Start time for the data query in epoch seconds * @format int64 */ startTime: number; /** * Step parameter for prometheus query * @default "60s" */ step?: string; /** * Type of the data query or the data being fetched */ type: string; }