1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- import {t} from 'sentry/locale';
- import {NewQuery} from 'sentry/types';
- export const DEFAULT_EVENT_VIEW: Readonly<NewQuery> = {
- id: undefined,
- name: t('All Events'),
- query: '',
- projects: [],
- fields: ['title', 'event.type', 'project', 'user.display', 'timestamp'],
- orderby: '-timestamp',
- version: 2,
- range: '24h',
- };
- export const TRANSACTION_VIEWS: Readonly<Array<NewQuery>> = [
- {
- id: undefined,
- name: t('Transactions by Volume'),
- fields: [
- 'transaction',
- 'project',
- 'count()',
- 'avg(transaction.duration)',
- 'p75()',
- 'p95()',
- ],
- orderby: '-count',
- query: 'event.type:transaction',
- projects: [],
- version: 2,
- range: '24h',
- },
- ];
- export const WEB_VITALS_VIEWS: Readonly<Array<NewQuery>> = [
- {
- id: undefined,
- name: t('Web Vitals'),
- fields: [
- 'transaction',
- 'epm()',
- 'p75(measurements.fp)',
- 'p75(measurements.fcp)',
- 'p75(measurements.lcp)',
- 'p75(measurements.fid)',
- 'p75(measurements.cls)',
- ],
- orderby: '-epm',
- query: 'event.type:transaction transaction.op:pageload',
- projects: [],
- version: 2,
- range: '24h',
- },
- ];
- export const ALL_VIEWS: Readonly<Array<NewQuery>> = [
- DEFAULT_EVENT_VIEW,
- {
- id: undefined,
- name: t('Errors by Title'),
- fields: ['title', 'count()', 'count_unique(user)', 'project'],
- orderby: '-count',
- query: 'event.type:error',
- projects: [],
- version: 2,
- range: '24h',
- display: 'top5',
- },
- {
- id: undefined,
- name: t('Errors by URL'),
- fields: ['url', 'count()', 'count_unique(issue)'],
- orderby: '-count',
- query: 'event.type:error has:url',
- projects: [],
- version: 2,
- range: '24h',
- display: 'top5',
- },
- ];
|