123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- import {Component, createRef, Fragment} from 'react';
- import {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import {Alert} from 'sentry/components/alert';
- import GuideAnchor from 'sentry/components/assistant/guideAnchor';
- import ButtonBar from 'sentry/components/buttonBar';
- import DiscoverButton from 'sentry/components/discoverButton';
- import * as Layout from 'sentry/components/layouts/thirds';
- import ExternalLink from 'sentry/components/links/externalLink';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import TimeSince from 'sentry/components/timeSince';
- import {t, tct, tn} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {Organization} from 'sentry/types';
- import {defined} from 'sentry/utils';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import EventView from 'sentry/utils/discover/eventView';
- import {QueryError} from 'sentry/utils/discover/genericDiscoverQuery';
- import {getDuration} from 'sentry/utils/formatters';
- import {createFuzzySearch, Fuse} from 'sentry/utils/fuzzySearch';
- import getDynamicText from 'sentry/utils/getDynamicText';
- import {TraceFullDetailed, TraceMeta} from 'sentry/utils/performance/quickTrace/types';
- import {filterTrace, reduceTrace} from 'sentry/utils/performance/quickTrace/utils';
- import {VisuallyCompleteWithData} from 'sentry/utils/performanceForSentry';
- import Breadcrumb from 'sentry/views/performance/breadcrumb';
- import {MetaData} from 'sentry/views/performance/transactionDetails/styles';
- import {TraceDetailHeader, TraceSearchBar, TraceSearchContainer} from './styles';
- import TraceNotFound from './traceNotFound';
- import TraceView from './traceView';
- import {TraceInfo} from './types';
- import {getTraceInfo, isRootTransaction} from './utils';
- type IndexedFusedTransaction = {
- indexed: string[];
- transaction: TraceFullDetailed;
- };
- type Props = Pick<RouteComponentProps<{traceSlug: string}, {}>, 'params' | 'location'> & {
- dateSelected: boolean;
- error: QueryError | null;
- isLoading: boolean;
- meta: TraceMeta | null;
- organization: Organization;
- traceEventView: EventView;
- traceSlug: string;
- traces: TraceFullDetailed[] | null;
- };
- type State = {
- filteredTransactionIds: Set<string> | undefined;
- searchQuery: string | undefined;
- };
- class TraceDetailsContent extends Component<Props, State> {
- state: State = {
- searchQuery: undefined,
- filteredTransactionIds: undefined,
- };
- componentDidMount() {
- this.initFuse();
- }
- componentDidUpdate(prevProps: Props) {
- if (this.props.traces !== prevProps.traces) {
- this.initFuse();
- }
- }
- fuse: Fuse<IndexedFusedTransaction> | null = null;
- traceViewRef = createRef<HTMLDivElement>();
- virtualScrollbarContainerRef = createRef<HTMLDivElement>();
- async initFuse() {
- if (defined(this.props.traces) && this.props.traces.length > 0) {
- const transformed: IndexedFusedTransaction[] = this.props.traces.flatMap(trace =>
- reduceTrace<IndexedFusedTransaction[]>(
- trace,
- (acc, transaction) => {
- const indexed: string[] = [
- transaction['transaction.op'],
- transaction.transaction,
- transaction.project_slug,
- ];
- acc.push({
- transaction,
- indexed,
- });
- return acc;
- },
- []
- )
- );
- this.fuse = await createFuzzySearch(transformed, {
- keys: ['indexed'],
- includeMatches: true,
- threshold: 0.6,
- location: 0,
- distance: 100,
- maxPatternLength: 32,
- });
- }
- }
- renderTraceLoading() {
- return <LoadingIndicator />;
- }
- renderTraceRequiresDateRangeSelection() {
- return <LoadingError message={t('Trace view requires a date range selection.')} />;
- }
- handleTransactionFilter = (searchQuery: string) => {
- this.setState({searchQuery: searchQuery || undefined}, this.filterTransactions);
- };
- filterTransactions = () => {
- const {traces} = this.props;
- const {filteredTransactionIds, searchQuery} = this.state;
- if (!searchQuery || traces === null || traces.length <= 0 || !defined(this.fuse)) {
- if (filteredTransactionIds !== undefined) {
- this.setState({
- filteredTransactionIds: undefined,
- });
- }
- return;
- }
- const fuseMatches = this.fuse
- .search<IndexedFusedTransaction>(searchQuery)
- /**
- * Sometimes, there can be matches that don't include any
- * indices. These matches are often noise, so exclude them.
- */
- .filter(({matches}) => matches?.length)
- .map(({item}) => item.transaction.event_id);
- /**
- * Fuzzy search on ids result in seemingly random results. So switch to
- * doing substring matches on ids to provide more meaningful results.
- */
- const idMatches = traces
- .flatMap(trace =>
- filterTrace(
- trace,
- ({event_id, span_id}) =>
- event_id.includes(searchQuery) || span_id.includes(searchQuery)
- )
- )
- .map(transaction => transaction.event_id);
- this.setState({
- filteredTransactionIds: new Set([...fuseMatches, ...idMatches]),
- });
- };
- renderSearchBar() {
- return (
- <TraceSearchContainer>
- <TraceSearchBar
- defaultQuery=""
- query={this.state.searchQuery || ''}
- placeholder={t('Search for transactions')}
- onSearch={this.handleTransactionFilter}
- />
- </TraceSearchContainer>
- );
- }
- renderTraceHeader(traceInfo: TraceInfo) {
- const {meta} = this.props;
- const errors = meta?.errors ?? traceInfo.errors.size;
- const performanceIssues =
- meta?.performance_issues ?? traceInfo.performanceIssues.size;
- return (
- <TraceDetailHeader>
- <GuideAnchor target="trace_view_guide_breakdown">
- <MetaData
- headingText={t('Event Breakdown')}
- tooltipText={t(
- 'The number of transactions and issues there are in this trace.'
- )}
- bodyText={tct('[transactions] | [errors]', {
- transactions: tn(
- '%s Transaction',
- '%s Transactions',
- meta?.transactions ?? traceInfo.transactions.size
- ),
- errors: tn('%s Issue', '%s Issues', errors + performanceIssues),
- })}
- subtext={tn(
- 'Across %s project',
- 'Across %s projects',
- meta?.projects ?? traceInfo.projects.size
- )}
- />
- </GuideAnchor>
- <MetaData
- headingText={t('Total Duration')}
- tooltipText={t('The time elapsed between the start and end of this trace.')}
- bodyText={getDuration(
- traceInfo.endTimestamp - traceInfo.startTimestamp,
- 2,
- true
- )}
- subtext={getDynamicText({
- value: <TimeSince date={(traceInfo.endTimestamp || 0) * 1000} />,
- fixed: '5 days ago',
- })}
- />
- </TraceDetailHeader>
- );
- }
- renderTraceWarnings() {
- const {traces} = this.props;
- const {roots, orphans} = (traces ?? []).reduce(
- (counts, trace) => {
- if (isRootTransaction(trace)) {
- counts.roots++;
- } else {
- counts.orphans++;
- }
- return counts;
- },
- {roots: 0, orphans: 0}
- );
- let warning: React.ReactNode = null;
- if (roots === 0 && orphans > 0) {
- warning = (
- <Alert type="info" showIcon>
- <ExternalLink href="https://docs.sentry.io/product/performance/trace-view/#orphan-traces-and-broken-subtraces">
- {t(
- 'A root transaction is missing. Transactions linked by a dashed line have been orphaned and cannot be directly linked to the root.'
- )}
- </ExternalLink>
- </Alert>
- );
- } else if (roots === 1 && orphans > 0) {
- warning = (
- <Alert type="info" showIcon>
- <ExternalLink href="https://docs.sentry.io/product/performance/trace-view/#orphan-traces-and-broken-subtraces">
- {t(
- 'This trace has broken subtraces. Transactions linked by a dashed line have been orphaned and cannot be directly linked to the root.'
- )}
- </ExternalLink>
- </Alert>
- );
- } else if (roots > 1) {
- warning = (
- <Alert type="info" showIcon>
- <ExternalLink href="https://docs.sentry.io/product/sentry-basics/tracing/trace-view/#multiple-roots">
- {t('Multiple root transactions have been found with this trace ID.')}
- </ExternalLink>
- </Alert>
- );
- }
- return warning;
- }
- renderContent() {
- const {
- dateSelected,
- isLoading,
- error,
- organization,
- location,
- traceEventView,
- traceSlug,
- traces,
- meta,
- } = this.props;
- if (!dateSelected) {
- return this.renderTraceRequiresDateRangeSelection();
- }
- if (isLoading) {
- return this.renderTraceLoading();
- }
- if (error !== null || traces === null || traces.length <= 0) {
- return (
- <TraceNotFound
- meta={meta}
- traceEventView={traceEventView}
- traceSlug={traceSlug}
- location={location}
- organization={organization}
- />
- );
- }
- const traceInfo = getTraceInfo(traces);
- return (
- <Fragment>
- {this.renderTraceWarnings()}
- {this.renderTraceHeader(traceInfo)}
- {this.renderSearchBar()}
- <Margin>
- <VisuallyCompleteWithData
- id="PerformanceDetails-TraceView"
- hasData={!!traces.length}
- >
- <TraceView
- filteredTransactionIds={this.state.filteredTransactionIds}
- traceInfo={traceInfo}
- location={location}
- organization={organization}
- traceEventView={traceEventView}
- traceSlug={traceSlug}
- traces={traces}
- meta={meta}
- />
- </VisuallyCompleteWithData>
- </Margin>
- </Fragment>
- );
- }
- render() {
- const {organization, location, traceEventView, traceSlug} = this.props;
- return (
- <Fragment>
- <Layout.Header>
- <Layout.HeaderContent>
- <Breadcrumb
- organization={organization}
- location={location}
- traceSlug={traceSlug}
- />
- <Layout.Title data-test-id="trace-header">
- {t('Trace ID: %s', traceSlug)}
- </Layout.Title>
- </Layout.HeaderContent>
- <Layout.HeaderActions>
- <ButtonBar gap={1}>
- <DiscoverButton
- size="sm"
- to={traceEventView.getResultsViewUrlTarget(organization.slug)}
- onClick={() => {
- trackAnalytics('performance_views.trace_view.open_in_discover', {
- organization,
- });
- }}
- >
- {t('Open in Discover')}
- </DiscoverButton>
- </ButtonBar>
- </Layout.HeaderActions>
- </Layout.Header>
- <Layout.Body>
- <Layout.Main fullWidth>{this.renderContent()}</Layout.Main>
- </Layout.Body>
- </Fragment>
- );
- }
- }
- const Margin = styled('div')`
- margin-top: ${space(2)};
- `;
- export default TraceDetailsContent;
|