123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814 |
- import type {Location} from 'history';
- import {COL_WIDTH_UNDEFINED} from 'sentry/components/gridEditable';
- import {wrapQueryInWildcards} from 'sentry/components/performance/searchBar';
- import {ALL_ACCESS_PROJECTS} from 'sentry/constants/pageFilters';
- import {t} from 'sentry/locale';
- import type {SelectValue} from 'sentry/types/core';
- import type {NewQuery, Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import EventView from 'sentry/utils/discover/eventView';
- import {WEB_VITAL_DETAILS} from 'sentry/utils/performance/vitals/constants';
- import {decodeScalar} from 'sentry/utils/queryString';
- import {MutableSearch} from 'sentry/utils/tokenizeSearch';
- import {getCurrentTrendParameter} from 'sentry/views/performance/trends/utils';
- import {getCurrentLandingDisplay, LandingDisplayField} from './landing/utils';
- import {
- getVitalDetailTableMehStatusFunction,
- getVitalDetailTablePoorStatusFunction,
- vitalNameFromLocation,
- } from './vitalDetail/utils';
- export const DEFAULT_STATS_PERIOD = '7d';
- export const DEFAULT_PROJECT_THRESHOLD_METRIC = 'duration';
- export const DEFAULT_PROJECT_THRESHOLD = 300;
- export const COLUMN_TITLES = [
- 'transaction',
- 'project',
- 'tpm',
- 'p50',
- 'p95',
- 'failure rate',
- 'apdex',
- 'users',
- 'user misery',
- ];
- const TOKEN_KEYS_SUPPORTED_IN_LIMITED_SEARCH = ['transaction'];
- export const getDefaultStatsPeriod = (organization: Organization) => {
- if (organization?.features?.includes('performance-landing-page-stats-period')) {
- return '14d';
- }
- return DEFAULT_STATS_PERIOD;
- };
- export enum PerformanceTerm {
- TPM = 'tpm',
- THROUGHPUT = 'throughput',
- FAILURE_RATE = 'failureRate',
- P50 = 'p50',
- P75 = 'p75',
- P95 = 'p95',
- P99 = 'p99',
- LCP = 'lcp',
- FCP = 'fcp',
- FID = 'fid',
- CLS = 'cls',
- STATUS_BREAKDOWN = 'statusBreakdown',
- DURATION_DISTRIBUTION = 'durationDistribution',
- USER_MISERY = 'userMisery',
- APDEX = 'apdex',
- APP_START_COLD = 'appStartCold',
- APP_START_WARM = 'appStartWarm',
- SLOW_FRAMES = 'slowFrames',
- FROZEN_FRAMES = 'frozenFrames',
- STALL_PERCENTAGE = 'stallPercentage',
- MOST_ISSUES = 'mostIssues',
- MOST_ERRORS = 'mostErrors',
- SLOW_HTTP_SPANS = 'slowHTTPSpans',
- TIME_TO_FULL_DISPLAY = 'timeToFullDisplay',
- TIME_TO_INITIAL_DISPLAY = 'timeToInitialDisplay',
- MOST_TIME_SPENT_DB_QUERIES = 'mostTimeSpentDbQueries',
- MOST_TIME_CONSUMING_RESOURCES = 'mostTimeConsumingResources',
- MOST_TIME_CONSUMING_DOMAINS = 'mostTimeConsumingDomains',
- HIGHEST_CACHE_MISS_RATE_TRANSACTIONS = 'highestCacheMissRateTransactions',
- }
- export type TooltipOption = SelectValue<string> & {
- tooltip: string;
- };
- export function getAxisOptions(organization: Organization): TooltipOption[] {
- return [
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APDEX),
- value: 'apdex()',
- label: t('Apdex'),
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.TPM),
- value: 'tpm()',
- label: t('Transactions Per Minute'),
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.FAILURE_RATE),
- value: 'failure_rate()',
- label: t('Failure Rate'),
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P50),
- value: 'p50()',
- label: t('p50 Duration'),
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P95),
- value: 'p95()',
- label: t('p95 Duration'),
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P99),
- value: 'p99()',
- label: t('p99 Duration'),
- },
- ];
- }
- export type AxisOption = TooltipOption & {
- field: string;
- label: string;
- backupOption?: AxisOption;
- isDistribution?: boolean;
- isLeftDefault?: boolean;
- isRightDefault?: boolean;
- };
- export function getFrontendAxisOptions(organization: Organization): AxisOption[] {
- return [
- {
- tooltip: getTermHelp(organization, PerformanceTerm.LCP),
- value: `p75(lcp)`,
- label: t('LCP p75'),
- field: 'p75(measurements.lcp)',
- isLeftDefault: true,
- backupOption: {
- tooltip: getTermHelp(organization, PerformanceTerm.FCP),
- value: `p75(fcp)`,
- label: t('FCP p75'),
- field: 'p75(measurements.fcp)',
- },
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.DURATION_DISTRIBUTION),
- value: 'lcp_distribution',
- label: t('LCP Distribution'),
- field: 'measurements.lcp',
- isDistribution: true,
- isRightDefault: true,
- backupOption: {
- tooltip: getTermHelp(organization, PerformanceTerm.DURATION_DISTRIBUTION),
- value: 'fcp_distribution',
- label: t('FCP Distribution'),
- field: 'measurements.fcp',
- isDistribution: true,
- },
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.TPM),
- value: 'tpm()',
- label: t('Transactions Per Minute'),
- field: 'tpm()',
- },
- ];
- }
- export function getFrontendOtherAxisOptions(organization: Organization): AxisOption[] {
- return [
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P50),
- value: `p50()`,
- label: t('Duration p50'),
- field: 'p50(transaction.duration)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P75),
- value: `p75()`,
- label: t('Duration p75'),
- field: 'p75(transaction.duration)',
- isLeftDefault: true,
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P95),
- value: `p95()`,
- label: t('Duration p95'),
- field: 'p95(transaction.duration)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.DURATION_DISTRIBUTION),
- value: 'duration_distribution',
- label: t('Duration Distribution'),
- field: 'transaction.duration',
- isDistribution: true,
- isRightDefault: true,
- },
- ];
- }
- export function getBackendAxisOptions(organization: Organization): AxisOption[] {
- return [
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P50),
- value: `p50()`,
- label: t('Duration p50'),
- field: 'p50(transaction.duration)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P75),
- value: `p75()`,
- label: t('Duration p75'),
- field: 'p75(transaction.duration)',
- isLeftDefault: true,
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P95),
- value: `p95()`,
- label: t('Duration p95'),
- field: 'p95(transaction.duration)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.P99),
- value: `p99()`,
- label: t('Duration p99'),
- field: 'p99(transaction.duration)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.TPM),
- value: 'tpm()',
- label: t('Transactions Per Minute'),
- field: 'tpm()',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.FAILURE_RATE),
- value: 'failure_rate()',
- label: t('Failure Rate'),
- field: 'failure_rate()',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.DURATION_DISTRIBUTION),
- value: 'duration_distribution',
- label: t('Duration Distribution'),
- field: 'transaction.duration',
- isDistribution: true,
- isRightDefault: true,
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APDEX),
- value: 'apdex()',
- label: t('Apdex'),
- field: 'apdex()',
- },
- ];
- }
- export function getMobileAxisOptions(organization: Organization): AxisOption[] {
- return [
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APP_START_COLD),
- value: `p50(measurements.app_start_cold)`,
- label: t('Cold Start Duration p50'),
- field: 'p50(measurements.app_start_cold)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APP_START_COLD),
- value: `p75(measurements.app_start_cold)`,
- label: t('Cold Start Duration p75'),
- field: 'p75(measurements.app_start_cold)',
- isLeftDefault: true,
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APP_START_COLD),
- value: `p95(measurements.app_start_cold)`,
- label: t('Cold Start Duration p95'),
- field: 'p95(measurements.app_start_cold)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APP_START_COLD),
- value: `p99(measurements.app_start_cold)`,
- label: t('Cold Start Duration p99'),
- field: 'p99(measurements.app_start_cold)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.DURATION_DISTRIBUTION),
- value: 'app_start_cold_distribution',
- label: t('Cold Start Distribution'),
- field: 'measurements.app_start_cold',
- isDistribution: true,
- isRightDefault: true,
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APP_START_WARM),
- value: `p50(measurements.app_start_warm)`,
- label: t('Warm Start Duration p50'),
- field: 'p50(measurements.app_start_warm)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APP_START_WARM),
- value: `p75(measurements.app_start_warm)`,
- label: t('Warm Start Duration p75'),
- field: 'p75(measurements.app_start_warm)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APP_START_WARM),
- value: `p95(measurements.app_start_warm)`,
- label: t('Warm Start Duration p95'),
- field: 'p95(measurements.app_start_warm)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.APP_START_WARM),
- value: `p99(measurements.app_start_warm)`,
- label: t('Warm Start Duration p99'),
- field: 'p99(measurements.app_start_warm)',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.DURATION_DISTRIBUTION),
- value: 'app_start_warm_distribution',
- label: t('Warm Start Distribution'),
- field: 'measurements.app_start_warm',
- isDistribution: true,
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.TPM),
- value: 'tpm()',
- label: t('Transactions Per Minute'),
- field: 'tpm()',
- },
- {
- tooltip: getTermHelp(organization, PerformanceTerm.FAILURE_RATE),
- value: 'failure_rate()',
- label: t('Failure Rate'),
- field: 'failure_rate()',
- },
- ];
- }
- type TermFormatter = (organization: Organization) => string;
- export const PERFORMANCE_TERMS: Record<PerformanceTerm, TermFormatter> = {
- tpm: () => t('TPM is the number of recorded transaction events per minute.'),
- throughput: () =>
- t('Throughput is the number of recorded transaction events per minute.'),
- failureRate: () =>
- t(
- 'Failure rate is the percentage of recorded transactions that had a known and unsuccessful status.'
- ),
- p50: () => t('p50 indicates the duration that 50% of transactions are faster than.'),
- p75: () => t('p75 indicates the duration that 75% of transactions are faster than.'),
- p95: () => t('p95 indicates the duration that 95% of transactions are faster than.'),
- p99: () => t('p99 indicates the duration that 99% of transactions are faster than.'),
- lcp: () =>
- t('Largest contentful paint (LCP) is a web vital meant to represent user load times'),
- fcp: () =>
- t('First contentful paint (FCP) is a web vital meant to represent user load times'),
- fid: () =>
- t(
- 'First input delay (FID) is a web vital representing load for the first user interaction on a page.'
- ),
- cls: () =>
- t(
- 'Cumulative layout shift (CLS) is a web vital measuring unexpected visual shifting a user experiences.'
- ),
- statusBreakdown: () =>
- t(
- 'The breakdown of transaction statuses. This may indicate what type of failure it is.'
- ),
- durationDistribution: () =>
- t(
- 'Distribution buckets counts of transactions at specifics times for your current date range'
- ),
- userMisery: () =>
- t(
- "User Misery is a score that represents the number of unique users who have experienced load times 4x the project's configured threshold. Adjust project threshold in project performance settings."
- ),
- apdex: () =>
- t(
- 'Apdex is the ratio of both satisfactory and tolerable response times to all response times. To adjust the tolerable threshold, go to project performance settings.'
- ),
- appStartCold: () =>
- t('Cold start is a measure of the application start up time from scratch.'),
- appStartWarm: () =>
- t('Warm start is a measure of the application start up time while still in memory.'),
- slowFrames: () => t('The count of the number of slow frames in the transaction.'),
- frozenFrames: () => t('The count of the number of frozen frames in the transaction.'),
- mostErrors: () => t('Transactions with the most associated errors.'),
- mostIssues: () => t('The most instances of an issue for a related transaction.'),
- mostTimeSpentDbQueries: () =>
- t('Database spans on which the application spent most of its total time.'),
- mostTimeConsumingResources: () =>
- t('Render blocking resources on which the application spent most of its total time.'),
- mostTimeConsumingDomains: () =>
- t('Outgoing HTTP domains on which the application spent most of its total time.'),
- highestCacheMissRateTransactions: () =>
- t('Transactions with the highest cache miss rate.'),
- slowHTTPSpans: () => t('The transactions with the slowest spans of a certain type.'),
- stallPercentage: () =>
- t(
- 'The percentage of the transaction duration in which the application is in a stalled state.'
- ),
- timeToFullDisplay: () =>
- t(
- 'The time between application launch and complete display of all resources and views'
- ),
- timeToInitialDisplay: () =>
- t('The time it takes for an application to produce its first frame'),
- };
- export function getTermHelp(
- organization: Organization,
- term: keyof typeof PERFORMANCE_TERMS
- ): string {
- if (!PERFORMANCE_TERMS.hasOwnProperty(term)) {
- return '';
- }
- return PERFORMANCE_TERMS[term](organization);
- }
- export function prepareQueryForLandingPage(searchQuery, withStaticFilters) {
- const conditions = new MutableSearch(searchQuery);
- // If there is a bare text search, we want to treat it as a search
- // on the transaction name.
- if (conditions.freeText.length > 0) {
- const parsedFreeText = conditions.freeText.join(' ');
- // the query here is a user entered condition, no need to escape it
- conditions.setFilterValues(
- 'transaction',
- [wrapQueryInWildcards(parsedFreeText)],
- false
- );
- conditions.freeText = [];
- }
- if (withStaticFilters) {
- conditions.tokens = conditions.tokens.filter(
- token => token.key && TOKEN_KEYS_SUPPORTED_IN_LIMITED_SEARCH.includes(token.key)
- );
- }
- return conditions.formatString();
- }
- function generateGenericPerformanceEventView(
- location: Location,
- withStaticFilters: boolean,
- organization: Organization
- ): EventView {
- const {query} = location;
- const fields = [
- 'team_key_transaction',
- 'transaction',
- 'project',
- 'tpm()',
- 'p50()',
- 'p95()',
- 'failure_rate()',
- 'apdex()',
- 'count_unique(user)',
- 'count_miserable(user)',
- 'user_misery()',
- ];
- const hasStartAndEnd = query.start && query.end;
- const savedQuery: NewQuery = {
- id: undefined,
- name: t('Performance'),
- query: 'event.type:transaction',
- projects: [],
- fields,
- version: 2,
- };
- const widths = Array(savedQuery.fields.length).fill(COL_WIDTH_UNDEFINED);
- widths[savedQuery.fields.length - 1] = '110';
- savedQuery.widths = widths;
- if (!query.statsPeriod && !hasStartAndEnd) {
- savedQuery.range = getDefaultStatsPeriod(organization);
- }
- savedQuery.orderby = decodeScalar(query.sort, '-tpm');
- const searchQuery = decodeScalar(query.query, '');
- savedQuery.query = prepareQueryForLandingPage(searchQuery, withStaticFilters);
- const eventView = EventView.fromNewQueryWithLocation(savedQuery, location);
- eventView.additionalConditions.addFilterValues('event.type', ['transaction']);
- if (query.trendParameter) {
- // projects and projectIds are not necessary here since trendParameter will always
- // be present in location and will not be determined based on the project type
- const trendParameter = getCurrentTrendParameter(location, [], []);
- if (
- WEB_VITAL_DETAILS[trendParameter.column] &&
- !organization.features.includes('performance-new-trends')
- ) {
- eventView.additionalConditions.addFilterValues('has', [trendParameter.column]);
- }
- }
- return eventView;
- }
- function generateBackendPerformanceEventView(
- location: Location,
- withStaticFilters: boolean,
- organization: Organization
- ): EventView {
- const {query} = location;
- const fields = [
- 'team_key_transaction',
- 'transaction',
- 'project',
- 'transaction.op',
- 'http.method',
- 'tpm()',
- 'p50()',
- 'p95()',
- 'failure_rate()',
- 'apdex()',
- 'count_unique(user)',
- 'count_miserable(user)',
- 'user_misery()',
- ];
- const hasStartAndEnd = query.start && query.end;
- const savedQuery: NewQuery = {
- id: undefined,
- name: t('Performance'),
- query: 'event.type:transaction',
- projects: [],
- fields,
- version: 2,
- };
- const widths = Array(savedQuery.fields.length).fill(COL_WIDTH_UNDEFINED);
- widths[savedQuery.fields.length - 1] = '110';
- savedQuery.widths = widths;
- if (!query.statsPeriod && !hasStartAndEnd) {
- savedQuery.range = getDefaultStatsPeriod(organization);
- }
- savedQuery.orderby = decodeScalar(query.sort, '-tpm');
- const searchQuery = decodeScalar(query.query, '');
- savedQuery.query = prepareQueryForLandingPage(searchQuery, withStaticFilters);
- const eventView = EventView.fromNewQueryWithLocation(savedQuery, location);
- eventView.additionalConditions.addFilterValues('event.type', ['transaction']);
- return eventView;
- }
- function generateMobilePerformanceEventView(
- location: Location,
- projects: Project[],
- genericEventView: EventView,
- withStaticFilters: boolean,
- organization: Organization
- ): EventView {
- const {query} = location;
- const fields = [
- 'team_key_transaction',
- 'transaction',
- 'project',
- 'transaction.op',
- 'tpm()',
- 'p75(measurements.frames_slow_rate)',
- 'p75(measurements.frames_frozen_rate)',
- ];
- if (organization.features.includes('mobile-vitals')) {
- fields.push('p75(measurements.time_to_initial_display)');
- }
- // At this point, all projects are mobile projects.
- // If in addition to that, all projects are react-native projects,
- // then show the stall percentage as well.
- const projectIds = genericEventView.project;
- if (projectIds.length > 0 && projectIds[0] !== ALL_ACCESS_PROJECTS) {
- const selectedProjects = projects.filter(p =>
- projectIds.includes(parseInt(p.id, 10))
- );
- if (
- selectedProjects.length > 0 &&
- selectedProjects.every(project => project.platform === 'react-native')
- ) {
- fields.push('p75(measurements.stall_percentage)');
- }
- }
- const hasStartAndEnd = query.start && query.end;
- const savedQuery: NewQuery = {
- id: undefined,
- name: t('Performance'),
- query: 'event.type:transaction',
- projects: [],
- fields: [...fields, 'count_unique(user)', 'count_miserable(user)', 'user_misery()'],
- version: 2,
- };
- const widths = Array(savedQuery.fields.length).fill(COL_WIDTH_UNDEFINED);
- widths[savedQuery.fields.length - 1] = '110';
- savedQuery.widths = widths;
- if (!query.statsPeriod && !hasStartAndEnd) {
- savedQuery.range = getDefaultStatsPeriod(organization);
- }
- savedQuery.orderby = decodeScalar(query.sort, '-tpm');
- const searchQuery = decodeScalar(query.query, '');
- savedQuery.query = prepareQueryForLandingPage(searchQuery, withStaticFilters);
- const eventView = EventView.fromNewQueryWithLocation(savedQuery, location);
- eventView.additionalConditions.addFilterValues('event.type', ['transaction']);
- return eventView;
- }
- function generateFrontendPageloadPerformanceEventView(
- location: Location,
- withStaticFilters: boolean,
- organization: Organization
- ): EventView {
- const {query} = location;
- const fields = [
- 'team_key_transaction',
- 'transaction',
- 'project',
- 'tpm()',
- 'p75(measurements.fcp)',
- 'p75(measurements.lcp)',
- 'p75(measurements.fid)',
- 'p75(measurements.cls)',
- 'count_unique(user)',
- 'count_miserable(user)',
- 'user_misery()',
- ];
- const hasStartAndEnd = query.start && query.end;
- const savedQuery: NewQuery = {
- id: undefined,
- name: t('Performance'),
- query: 'event.type:transaction',
- projects: [],
- fields,
- version: 2,
- };
- const widths = Array(savedQuery.fields.length).fill(COL_WIDTH_UNDEFINED);
- widths[savedQuery.fields.length - 1] = '110';
- savedQuery.widths = widths;
- if (!query.statsPeriod && !hasStartAndEnd) {
- savedQuery.range = getDefaultStatsPeriod(organization);
- }
- savedQuery.orderby = decodeScalar(query.sort, '-tpm');
- const searchQuery = decodeScalar(query.query, '');
- savedQuery.query = prepareQueryForLandingPage(searchQuery, withStaticFilters);
- const eventView = EventView.fromNewQueryWithLocation(savedQuery, location);
- eventView.additionalConditions.addFilterValues('event.type', ['transaction']);
- eventView.additionalConditions.addFilterValues('transaction.op', ['pageload']);
- return eventView;
- }
- function generateFrontendOtherPerformanceEventView(
- location: Location,
- withStaticFilters: boolean,
- organization: Organization
- ): EventView {
- const {query} = location;
- const fields = [
- 'team_key_transaction',
- 'transaction',
- 'project',
- 'transaction.op',
- 'tpm()',
- 'p50(transaction.duration)',
- 'p75(transaction.duration)',
- 'p95(transaction.duration)',
- 'count_unique(user)',
- 'count_miserable(user)',
- 'user_misery()',
- ];
- const hasStartAndEnd = query.start && query.end;
- const savedQuery: NewQuery = {
- id: undefined,
- name: t('Performance'),
- query: 'event.type:transaction',
- projects: [],
- fields,
- version: 2,
- };
- const widths = Array(savedQuery.fields.length).fill(COL_WIDTH_UNDEFINED);
- widths[savedQuery.fields.length - 1] = '110';
- savedQuery.widths = widths;
- if (!query.statsPeriod && !hasStartAndEnd) {
- savedQuery.range = getDefaultStatsPeriod(organization);
- }
- savedQuery.orderby = decodeScalar(query.sort, '-tpm');
- const searchQuery = decodeScalar(query.query, '');
- savedQuery.query = prepareQueryForLandingPage(searchQuery, withStaticFilters);
- const eventView = EventView.fromNewQueryWithLocation(savedQuery, location);
- eventView.additionalConditions.addFilterValues('event.type', ['transaction']);
- return eventView;
- }
- export function generatePerformanceEventView(
- location: Location,
- projects: Project[],
- {isTrends = false, withStaticFilters = false} = {},
- organization: Organization
- ) {
- const eventView = generateGenericPerformanceEventView(
- location,
- withStaticFilters,
- organization
- );
- if (isTrends) {
- return eventView;
- }
- const display = getCurrentLandingDisplay(location, projects, eventView);
- switch (display?.field) {
- case LandingDisplayField.FRONTEND_PAGELOAD:
- return generateFrontendPageloadPerformanceEventView(
- location,
- withStaticFilters,
- organization
- );
- case LandingDisplayField.FRONTEND_OTHER:
- return generateFrontendOtherPerformanceEventView(
- location,
- withStaticFilters,
- organization
- );
- case LandingDisplayField.BACKEND:
- return generateBackendPerformanceEventView(
- location,
- withStaticFilters,
- organization
- );
- case LandingDisplayField.MOBILE:
- return generateMobilePerformanceEventView(
- location,
- projects,
- eventView,
- withStaticFilters,
- organization
- );
- default:
- return eventView;
- }
- }
- export function generatePerformanceVitalDetailView(
- location: Location,
- organization: Organization
- ): EventView {
- const {query} = location;
- const vitalName = vitalNameFromLocation(location);
- const hasStartAndEnd = query.start && query.end;
- const savedQuery: NewQuery = {
- id: undefined,
- name: t('Vitals Performance Details'),
- query: 'event.type:transaction',
- projects: [],
- fields: [
- 'team_key_transaction',
- 'transaction',
- 'project',
- 'count_unique(user)',
- 'count()',
- `p50(${vitalName})`,
- `p75(${vitalName})`,
- `p95(${vitalName})`,
- getVitalDetailTablePoorStatusFunction(vitalName),
- getVitalDetailTableMehStatusFunction(vitalName),
- ],
- version: 2,
- yAxis: [`p75(${vitalName})`],
- };
- if (!query.statsPeriod && !hasStartAndEnd) {
- savedQuery.range = getDefaultStatsPeriod(organization);
- }
- savedQuery.orderby = decodeScalar(query.sort, '-count');
- const searchQuery = decodeScalar(query.query, '');
- savedQuery.query = prepareQueryForLandingPage(searchQuery, false);
- const eventView = EventView.fromNewQueryWithLocation(savedQuery, location);
- eventView.additionalConditions.addFilterValues('event.type', ['transaction']);
- eventView.additionalConditions.addFilterValues('has', [vitalName]);
- return eventView;
- }
|