1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import type {DateString} from 'sentry/types/core';
- export type MetricsOperation =
- | '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';
- 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 type MetricsApiRequestQuery = MetricsApiRequestMetric & {
- interval: string;
- end?: DateString;
- environment?: string[];
- includeSeries?: number;
- includeTotals?: number;
- limit?: number;
- project?: number[];
- start?: DateString;
- statsPeriod?: string;
- };
- export type MetricsApiRequestQueryOptions = Partial<MetricsApiRequestQuery> & {
- fidelity?: 'high' | 'low';
- };
- export type MetricsApiResponse = {
- end: string;
- groups: MetricsGroup[];
- intervals: string[];
- meta: MetricMeta[];
- query: string;
- start: string;
- };
- export type MetricsGroup = {
- by: Record<string, string>;
- series: Record<string, Array<number | null>>;
- totals: Record<string, number | null>;
- };
- export type MetricsTagCollection = Record<string, MetricsTag>;
- 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: MetricsOperation[];
- type: MetricType;
- unit: string;
- };
- export type BlockingStatus = {
- blockedTags: string[];
- isBlocked: boolean;
- projectId: number;
- };
- export type MetricsMetaCollection = Record<string, MetricMeta>;
|