123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518 |
- import {t} from 'sentry/locale';
- import {uniqueId} from 'sentry/utils/guid';
- import type {DashboardDetails} from './types';
- import {DisplayType, WidgetType} from './types';
- type DashboardTemplate = DashboardDetails & {
- description: string;
- };
- export const EMPTY_DASHBOARD: DashboardDetails = {
- id: '',
- dateCreated: '',
- createdBy: undefined,
- title: t('Untitled dashboard'),
- widgets: [],
- projects: [],
- filters: {},
- };
- export const DASHBOARDS_TEMPLATES: DashboardTemplate[] = [
- {
- id: 'default-template',
- dateCreated: '',
- createdBy: undefined,
- title: t('General Template'),
- description: t('Various Frontend and Backend Widgets'),
- projects: [],
- filters: {},
- widgets: [
- {
- title: t('Number of Errors'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 0,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- conditions: '!event.type:transaction',
- orderby: 'count()',
- },
- ],
- },
- {
- title: t('Number of Issues'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 1,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['count_unique(issue)'],
- aggregates: ['count_unique(issue)'],
- columns: [],
- conditions: '!event.type:transaction',
- orderby: 'count_unique(issue)',
- },
- ],
- },
- {
- title: t('Events'),
- displayType: DisplayType.LINE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 4,
- x: 2,
- y: 0,
- },
- queries: [
- {
- name: t('Events'),
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- conditions: '!event.type:transaction',
- orderby: 'count()',
- },
- ],
- },
- {
- title: t('Affected Users'),
- displayType: DisplayType.LINE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 1,
- x: 1,
- y: 2,
- },
- queries: [
- {
- name: t('Known Users'),
- fields: ['count_unique(user)'],
- aggregates: ['count_unique(user)'],
- columns: [],
- conditions: 'has:user.email !event.type:transaction',
- orderby: 'count_unique(user)',
- },
- {
- name: t('Anonymous Users'),
- fields: ['count_unique(user)'],
- aggregates: ['count_unique(user)'],
- columns: [],
- conditions: '!has:user.email !event.type:transaction',
- orderby: 'count_unique(user)',
- },
- ],
- },
- {
- title: t('Handled vs. Unhandled'),
- displayType: DisplayType.LINE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 1,
- x: 0,
- y: 2,
- },
- queries: [
- {
- name: t('Handled'),
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- conditions: 'error.handled:true',
- orderby: 'count()',
- },
- {
- name: t('Unhandled'),
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- conditions: 'error.handled:false',
- orderby: 'count()',
- },
- ],
- },
- {
- title: t('Errors by Country'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 4,
- y: 6,
- },
- queries: [
- {
- name: '',
- fields: ['geo.country_code', 'geo.region', 'count()'],
- aggregates: ['count()'],
- columns: ['geo.country_code', 'geo.region'],
- conditions: '!event.type:transaction has:geo.country_code',
- orderby: 'count()',
- },
- ],
- },
- {
- title: t('High Throughput Transactions'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 0,
- y: 6,
- },
- queries: [
- {
- name: '',
- fields: ['count()', 'transaction'],
- aggregates: ['count()'],
- columns: ['transaction'],
- conditions: 'event.type:transaction',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('Errors by Browser'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 1,
- x: 5,
- y: 2,
- },
- queries: [
- {
- name: '',
- fields: ['browser.name', 'count()'],
- aggregates: ['count()'],
- columns: ['browser.name'],
- conditions: '!event.type:transaction has:browser.name',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('Overall User Misery'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 0,
- y: 1,
- },
- queries: [
- {
- name: '',
- fields: ['user_misery(300)'],
- aggregates: ['user_misery(300)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Overall Apdex'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 1,
- y: 1,
- },
- queries: [
- {
- name: '',
- fields: ['apdex(300)'],
- aggregates: ['apdex(300)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('High Throughput Transactions'),
- displayType: DisplayType.TOP_N,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 2,
- x: 0,
- y: 4,
- },
- queries: [
- {
- name: '',
- fields: ['transaction', 'count()'],
- aggregates: ['count()'],
- columns: ['transaction'],
- conditions: 'event.type:transaction',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('Issues Assigned to Me or My Teams'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.ISSUE,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 2,
- y: 2,
- },
- queries: [
- {
- name: '',
- fields: ['assignee', 'issue', 'title'],
- aggregates: [],
- columns: ['assignee', 'issue', 'title'],
- conditions: 'assigned_or_suggested:me is:unresolved',
- orderby: 'trends',
- },
- ],
- },
- {
- title: t('Transactions Ordered by Misery'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- y: 6,
- x: 2,
- },
- queries: [
- {
- name: '',
- fields: ['transaction', 'user_misery(300)'],
- aggregates: ['user_misery(300)'],
- columns: ['transaction'],
- conditions: '',
- orderby: '-user_misery(300)',
- },
- ],
- },
- {
- title: t('Errors by Browser Over Time'),
- displayType: DisplayType.TOP_N,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 1,
- x: 4,
- y: 2,
- },
- queries: [
- {
- name: '',
- fields: ['browser.name', 'count()'],
- aggregates: ['count()'],
- columns: ['browser.name'],
- conditions: 'event.type:error has:browser.name',
- orderby: '-count()',
- },
- ],
- },
- ],
- },
- {
- id: 'frontend-template',
- title: t('Frontend Template'),
- dateCreated: '',
- createdBy: undefined,
- description: t('Erroring URLs and Web Vitals'),
- projects: [],
- filters: {},
- widgets: [
- {
- title: t('Top 5 Issues by Unique Users Over Time'),
- displayType: DisplayType.TOP_N,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 4,
- x: 0,
- y: 4,
- },
- queries: [
- {
- name: '',
- fields: ['issue', 'count_unique(user)'],
- aggregates: ['count_unique(user)'],
- columns: ['issue'],
- conditions: '',
- orderby: '-count_unique(user)',
- },
- ],
- },
- {
- title: t('Errors by Browser as Percentage'),
- displayType: DisplayType.AREA,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 0,
- y: 9,
- },
- queries: [
- {
- name: '',
- fields: [
- 'equation|count_if(browser.name,equals,Chrome)/count() * 100',
- 'equation|count_if(browser.name,equals,Firefox)/count() * 100',
- 'equation|count_if(browser.name,equals,Safari)/count() * 100',
- ],
- aggregates: [
- 'equation|count_if(browser.name,equals,Chrome)/count() * 100',
- 'equation|count_if(browser.name,equals,Firefox)/count() * 100',
- 'equation|count_if(browser.name,equals,Safari)/count() * 100',
- ],
- columns: [],
- conditions: 'has:browser.name',
- orderby: '',
- },
- ],
- },
- {
- title: t('Issues Assigned to Me or My Teams'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.ISSUE,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 4,
- y: 4,
- },
- queries: [
- {
- name: '',
- fields: ['assignee', 'issue', 'title'],
- aggregates: [],
- columns: ['assignee', 'issue', 'title'],
- conditions: 'assigned_or_suggested:me is:unresolved',
- orderby: 'date',
- },
- ],
- },
- {
- title: t('Top 5 Issues by Unique Users'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 3,
- minH: 2,
- w: 4,
- x: 0,
- y: 6,
- },
- queries: [
- {
- name: '',
- fields: ['issue', 'count_unique(user)', 'title'],
- aggregates: ['count_unique(user)'],
- columns: ['issue', 'title'],
- conditions: '',
- orderby: '-count_unique(user)',
- },
- ],
- },
- {
- title: t('URLs grouped by Issue'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 5,
- minH: 2,
- w: 2,
- x: 4,
- y: 8,
- },
- queries: [
- {
- name: '',
- fields: ['http.url', 'issue', 'count_unique(user)'],
- aggregates: ['count_unique(user)'],
- columns: ['http.url', 'issue'],
- conditions: 'event.type:error',
- orderby: '-count_unique(user)',
- },
- ],
- },
- {
- title: t('Transactions 404ing'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 2,
- y: 9,
- },
- queries: [
- {
- name: '',
- fields: ['transaction', 'count()'],
- aggregates: ['count()'],
- columns: ['transaction'],
- conditions: 'transaction.status:not_found',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('Layout Shift Over Time'),
- displayType: DisplayType.LINE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 1,
- x: 2,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['p75(measurements.cls)'],
- aggregates: ['p75(measurements.cls)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('LCP by Country'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 2,
- x: 2,
- y: 2,
- },
- queries: [
- {
- name: '',
- fields: ['geo.country_code', 'geo.region', 'p75(measurements.lcp)'],
- aggregates: ['p75(measurements.lcp)'],
- columns: ['geo.country_code', 'geo.region'],
- conditions: 'has:geo.country_code',
- orderby: '-p75(measurements.lcp)',
- },
- ],
- },
- {
- title: t('Page Load Over Time'),
- displayType: DisplayType.LINE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 1,
- x: 3,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['p75(measurements.lcp)', 'p75(measurements.fcp)'],
- aggregates: ['p75(measurements.lcp)', 'p75(measurements.fcp)'],
- columns: [],
- conditions: 'transaction.op:pageload',
- orderby: '',
- },
- ],
- },
- {
- title: t('Slowest Pageloads'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- layout: {
- h: 2,
- minH: 2,
- w: 2,
- x: 0,
- y: 2,
- },
- queries: [
- {
- name: '',
- fields: ['transaction', 'count()'],
- aggregates: ['count()'],
- columns: ['transaction'],
- conditions: 'transaction.op:pageload p75(measurements.lcp):>4s',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('Overall LCP'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 0,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['p75(measurements.lcp)'],
- aggregates: ['p75(measurements.lcp)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Slow Page Navigations'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 4,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['transaction', 'count()'],
- aggregates: ['count()'],
- columns: ['transaction'],
- conditions: 'transaction.duration:>2s',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('Overall FCP'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 1,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['p75(measurements.fcp)'],
- aggregates: ['p75(measurements.fcp)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Overall CLS'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 0,
- y: 1,
- },
- queries: [
- {
- name: '',
- fields: ['p75(measurements.cls)'],
- aggregates: ['p75(measurements.cls)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Overall FID'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 1,
- y: 1,
- },
- queries: [
- {
- name: '',
- fields: ['p75(measurements.fid)'],
- aggregates: ['p75(measurements.fid)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- ],
- },
- {
- id: 'backend-template',
- title: t('Backend Template'),
- dateCreated: '',
- createdBy: undefined,
- description: t('Issues and Performance'),
- projects: [],
- filters: {},
- widgets: [
- {
- title: t('Top 5 Issues by Unique Users Over Time'),
- displayType: DisplayType.TOP_N,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 0,
- y: 6,
- },
- queries: [
- {
- name: '',
- fields: ['issue', 'count_unique(user)'],
- aggregates: ['count_unique(user)'],
- columns: ['issue'],
- conditions: '',
- orderby: '-count_unique(user)',
- },
- ],
- },
- {
- title: t('Transactions Erroring Over Time'),
- displayType: DisplayType.TOP_N,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 4,
- x: 2,
- y: 8,
- },
- queries: [
- {
- name: '',
- fields: ['transaction', 'count()'],
- aggregates: ['count()'],
- columns: ['transaction'],
- conditions: 'transaction.status:internal_error',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('Erroring Transactions by Percentage'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 5,
- minH: 2,
- w: 2,
- x: 4,
- y: 10,
- },
- queries: [
- {
- name: '',
- fields: [
- 'equation|count_if(transaction.status,equals,internal_error) / count() * 100',
- 'transaction',
- 'count_if(transaction.status,equals,internal_error)',
- 'count()',
- ],
- aggregates: [
- 'equation|count_if(transaction.status,equals,internal_error) / count() * 100',
- 'count_if(transaction.status,equals,internal_error)',
- 'count()',
- ],
- columns: ['transaction'],
- conditions: 'count():>100',
- orderby: '-equation[0]',
- },
- ],
- },
- {
- title: t('Top 5 Issues by Unique Users'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 5,
- minH: 2,
- w: 2,
- x: 0,
- y: 10,
- },
- queries: [
- {
- name: '',
- fields: ['issue', 'count_unique(user)', 'title'],
- aggregates: ['count_unique(user)'],
- columns: ['issue', 'title'],
- conditions: '',
- orderby: '-count_unique(user)',
- },
- ],
- },
- {
- title: t('Transactions Erroring'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 5,
- minH: 2,
- w: 2,
- x: 2,
- y: 10,
- },
- queries: [
- {
- name: '',
- fields: ['count()', 'transaction'],
- aggregates: ['count()'],
- columns: ['transaction'],
- conditions: 'transaction.status:internal_error',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('Issues Assigned to Me or My Teams'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.ISSUE,
- tempId: uniqueId(),
- layout: {
- h: 7,
- minH: 2,
- w: 6,
- x: 0,
- y: 15,
- },
- queries: [
- {
- name: '',
- fields: ['assignee', 'issue', 'title'],
- aggregates: [],
- columns: ['assignee', 'issue', 'title'],
- conditions: 'assigned_or_suggested:me is:unresolved',
- orderby: 'date',
- },
- ],
- },
- {
- title: t('p75 Over Time'),
- displayType: DisplayType.LINE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 4,
- x: 2,
- y: 2,
- },
- queries: [
- {
- name: '',
- fields: ['p75(transaction.duration)'],
- aggregates: ['p75(transaction.duration)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Throughput (Events Per Minute)'),
- displayType: DisplayType.LINE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 4,
- x: 2,
- y: 0,
- },
- queries: [
- {
- name: 'Transactions',
- fields: ['epm()'],
- aggregates: ['epm()'],
- columns: [],
- conditions: 'event.type:transaction',
- orderby: '',
- },
- {
- name: 'Errors',
- fields: ['epm()'],
- aggregates: ['epm()'],
- columns: [],
- conditions: 'event.type:error',
- orderby: '',
- },
- ],
- },
- {
- title: t('Tasks Transactions with Poor Apdex'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 0,
- y: 2,
- },
- queries: [
- {
- name: '',
- fields: ['count()', 'transaction'],
- aggregates: ['count()'],
- columns: ['transaction'],
- conditions: 'apdex():<0.5 transaction.op:*task*',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('HTTP Transactions with Poor Apdex'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 4,
- x: 2,
- y: 4,
- },
- queries: [
- {
- name: '',
- fields: ['epm()', 'http.method', 'http.status_code', 'transaction'],
- aggregates: ['epm()'],
- columns: ['http.method', 'http.status_code', 'transaction'],
- conditions:
- 'apdex():<0.5 transaction.op:*http* has:http.method has:http.status_code',
- orderby: '-epm()',
- },
- ],
- },
- {
- title: t('Overall Apdex'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 0,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['apdex(300)'],
- aggregates: ['apdex(300)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Overall Duration'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 1,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['p75(transaction.duration)'],
- aggregates: ['p75(transaction.duration)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Overall HTTP Spans'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 0,
- y: 1,
- },
- queries: [
- {
- name: '',
- fields: ['p75(spans.http)'],
- aggregates: ['p75(spans.http)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Overall DB Spans'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 1,
- y: 1,
- },
- queries: [
- {
- name: '',
- fields: ['p75(spans.db)'],
- aggregates: ['p75(spans.db)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- ],
- },
- {
- id: 'mobile-template',
- title: t('Mobile Template'),
- dateCreated: '',
- createdBy: undefined,
- description: t('Crash Details and Performance Vitals'),
- projects: [],
- filters: {},
- widgets: [
- {
- title: t('Total Crashes'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 0,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- conditions: 'error.handled:false event.type:error',
- orderby: '',
- },
- ],
- },
- {
- title: t('Unique Users Who Crashed'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 1,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['count_unique(user)'],
- aggregates: ['count_unique(user)'],
- columns: [],
- conditions: 'error.handled:false event.type:error',
- orderby: '',
- },
- ],
- },
- {
- title: t('Unique Issues Causing Crashes'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 2,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['count_unique(issue)'],
- aggregates: ['count_unique(issue)'],
- columns: [],
- conditions: 'error.handled:false event.type:error',
- orderby: '',
- },
- ],
- },
- {
- title: t('Overall Number of Errors'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 3,
- y: 0,
- },
- queries: [
- {
- name: '',
- fields: ['count()'],
- aggregates: ['count()'],
- columns: [],
- conditions: 'event.type:error',
- orderby: '',
- },
- ],
- },
- {
- title: t('Issues Causing Crashes'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 3,
- x: 0,
- y: 1,
- },
- queries: [
- {
- name: '',
- fields: ['issue', 'count()', 'count_unique(user)'],
- aggregates: ['count()', 'count_unique(user)'],
- columns: ['issue'],
- conditions: 'error.handled:false',
- orderby: '-count_unique(user)',
- },
- ],
- },
- {
- title: t('Crashes Over Time'),
- displayType: DisplayType.LINE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 3,
- minH: 2,
- w: 2,
- x: 4,
- y: 0,
- },
- queries: [
- {
- name: t('Crashes'),
- fields: ['count()', 'count_unique(user)'],
- aggregates: ['count()', 'count_unique(user)'],
- columns: [],
- conditions: 'error.handled:false',
- orderby: '',
- },
- ],
- },
- {
- title: t('Crashes by OS'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 2,
- minH: 2,
- w: 1,
- x: 3,
- y: 1,
- },
- queries: [
- {
- name: '',
- fields: ['os', 'count()'],
- aggregates: ['count()'],
- columns: ['os'],
- conditions: 'has:os error.handled:false',
- orderby: '-count()',
- },
- ],
- },
- {
- title: t('Overall Warm Startup Time'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 0,
- y: 3,
- },
- queries: [
- {
- name: '',
- fields: ['p75(measurements.app_start_warm)'],
- aggregates: ['p75(measurements.app_start_warm)'],
- columns: [],
- conditions: 'has:measurements.app_start_warm',
- orderby: '',
- },
- ],
- },
- {
- title: t('Overall Cold Startup Time'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 2,
- y: 3,
- },
- queries: [
- {
- name: '',
- fields: ['p75(measurements.app_start_cold)'],
- aggregates: ['p75(measurements.app_start_cold)'],
- columns: [],
- conditions: 'has:measurements.app_start_cold',
- orderby: '',
- },
- ],
- },
- {
- title: t('Warm Startup Times'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 0,
- y: 4,
- },
- queries: [
- {
- name: '',
- fields: ['transaction', 'p75(measurements.app_start_warm)'],
- aggregates: ['p75(measurements.app_start_warm)'],
- columns: ['transaction'],
- conditions: 'has:measurements.app_start_warm',
- orderby: '-p75(measurements.app_start_warm)',
- },
- ],
- },
- {
- title: t('Cold Startup Times'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 2,
- y: 4,
- },
- queries: [
- {
- name: '',
- fields: ['transaction', 'p75(measurements.app_start_cold)'],
- aggregates: ['p75(measurements.app_start_cold)'],
- columns: ['transaction'],
- conditions: 'has:measurements.app_start_cold',
- orderby: '-p75(measurements.app_start_cold)',
- },
- ],
- },
- {
- title: t('Overall Frozen Frames'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 4,
- y: 3,
- },
- queries: [
- {
- name: '',
- fields: ['p75(measurements.frames_frozen_rate)'],
- aggregates: ['p75(measurements.frames_frozen_rate)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Max Warm Startup Time'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 1,
- y: 3,
- },
- queries: [
- {
- name: '',
- fields: ['max(measurements.app_start_warm)'],
- aggregates: ['max(measurements.app_start_warm)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Max Cold Startup Time'),
- displayType: DisplayType.BIG_NUMBER,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 1,
- minH: 1,
- w: 1,
- x: 3,
- y: 3,
- },
- queries: [
- {
- name: '',
- fields: ['max(measurements.app_start_cold)'],
- aggregates: ['max(measurements.app_start_cold)'],
- columns: [],
- conditions: '',
- orderby: '',
- },
- ],
- },
- {
- title: t('Frozen Frames Rate'),
- displayType: DisplayType.TABLE,
- interval: '5m',
- widgetType: WidgetType.DISCOVER,
- tempId: uniqueId(),
- layout: {
- h: 4,
- minH: 2,
- w: 2,
- x: 4,
- y: 4,
- },
- queries: [
- {
- name: '',
- fields: ['transaction', 'p75(measurements.frames_frozen_rate)'],
- aggregates: ['p75(measurements.frames_frozen_rate)'],
- columns: ['transaction'],
- conditions: 'has:measurements.frames_frozen_rate',
- orderby: '-p75(measurements.frames_frozen_rate)',
- },
- ],
- },
- ],
- },
- ];
- export const DISPLAY_TYPE_CHOICES = [
- {label: t('Area Chart'), value: 'area'},
- {label: t('Bar Chart'), value: 'bar'},
- {label: t('Line Chart'), value: 'line'},
- {label: t('Table'), value: 'table'},
- {label: t('Big Number'), value: 'big_number'},
- {label: t('Top 5 Events'), value: 'top_n'},
- ];
- export const INTERVAL_CHOICES = [
- {label: t('1 Minute'), value: '1m'},
- {label: t('5 Minutes'), value: '5m'},
- {label: t('15 Minutes'), value: '15m'},
- {label: t('30 Minutes'), value: '30m'},
- {label: t('1 Hour'), value: '1h'},
- {label: t('1 Day'), value: '1d'},
- ];
- export const DEFAULT_STATS_PERIOD = '24h';
|