import type {DateString} from 'sentry/types/core'; export type MetricsAggregate = | 'sum' | 'count_unique' | 'avg' | 'count' | 'max' | 'p50' | 'p75' | 'p95' | 'p99'; export type MetricType = 'c' | 'd' | 'g' | 'e' | 's'; export type UseCase = 'custom' | 'transactions' | 'sessions' | 'spans' | 'metric_stats'; export type MRI = `${MetricType}:${UseCase}${string}@${string}`; export type ParsedMRI = { name: string; type: MetricType; unit: string; useCase: UseCase; }; export type MetricsApiRequestMetric = { field: string; groupBy?: string[]; orderBy?: string; query?: string; }; export interface MetricsApiRequestQuery extends MetricsApiRequestMetric { interval: string; end?: DateString; environment?: string[]; includeSeries?: number; includeTotals?: number; limit?: number; project?: number[]; start?: DateString; statsPeriod?: string; } export type MetricsDataIntervalLadder = 'metrics' | 'bar' | 'dashboard'; export type MetricsApiResponse = { end: string; groups: MetricsGroup[]; intervals: string[]; meta: MetricMeta[]; query: string; start: string; }; export interface MetricsQueryApiResponse { data: { by: Record; series: Array; totals: number; }[][]; end: string; intervals: string[]; meta: [ ...{name: string; type: string}[], // The last entry in meta has a different shape MetricsQueryApiResponseLastMeta, ][]; start: string; } export interface MetricsQueryApiResponseLastMeta { group_bys: string[]; limit: number | null; order: string | null; has_more?: boolean; scaling_factor?: number | null; unit?: string | null; unit_family?: 'duration' | 'information' | null; } export type MetricsGroup = { by: Record; series: Record>; totals: Record; }; export type MetricsTagCollection = Record; export type MetricsTag = { key: string; }; export type MetricsTagValue = { key: string; value: string; }; export type MetricMeta = { blockingStatus: BlockingStatus[]; mri: MRI; // name is returned by the API but should not be used, use parseMRI(mri).name instead // name: string; operations: MetricsAggregate[]; projectIds: number[]; type: MetricType; unit: string; }; export type BlockingStatus = { blockedTags: string[]; isBlocked: boolean; projectId: number; }; export type MetricsMetaCollection = Record;