123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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',
- yAxis: ['epm()'],
- },
- ];
- 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',
- },
- ];
|