1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267 |
- import type React from 'react';
- import {
- Fragment,
- useCallback,
- useEffect,
- useLayoutEffect,
- useMemo,
- useReducer,
- useRef,
- useState,
- } from 'react';
- import {flushSync} from 'react-dom';
- import styled from '@emotion/styled';
- import * as Sentry from '@sentry/react';
- import * as qs from 'query-string';
- import {addSuccessMessage} from 'sentry/actionCreators/indicator';
- import {Button} from 'sentry/components/button';
- import useFeedbackWidget from 'sentry/components/feedback/widget/useFeedbackWidget';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import NoProjectMessage from 'sentry/components/noProjectMessage';
- import {normalizeDateTimeParams} from 'sentry/components/organizations/pageFilters/parse';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {ALL_ACCESS_PROJECTS} from 'sentry/constants/pageFilters';
- import {t, tct} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {EventTransaction} from 'sentry/types/event';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import EventView from 'sentry/utils/discover/eventView';
- import type {TraceSplitResults} from 'sentry/utils/performance/quickTrace/types';
- import {
- cancelAnimationTimeout,
- requestAnimationTimeout,
- } from 'sentry/utils/profiling/hooks/useVirtualizedTree/virtualizedTreeUtils';
- import type {UseApiQueryResult} from 'sentry/utils/queryClient';
- import {decodeScalar} from 'sentry/utils/queryString';
- import type RequestError from 'sentry/utils/requestError/requestError';
- import {capitalize} from 'sentry/utils/string/capitalize';
- import useApi from 'sentry/utils/useApi';
- import type {DispatchingReducerMiddleware} from 'sentry/utils/useDispatchingReducer';
- import useOrganization from 'sentry/utils/useOrganization';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import {useParams} from 'sentry/utils/useParams';
- import useProjects from 'sentry/utils/useProjects';
- import type {ReplayTrace} from 'sentry/views/replays/detail/trace/useReplayTraces';
- import type {ReplayRecord} from 'sentry/views/replays/types';
- import {useTrace} from './traceApi/useTrace';
- import {type TraceMetaQueryResults, useTraceMeta} from './traceApi/useTraceMeta';
- import {useTraceRootEvent} from './traceApi/useTraceRootEvent';
- import {useTraceTree} from './traceApi/useTraceTree';
- import {TraceDrawer} from './traceDrawer/traceDrawer';
- import {TraceShape, TraceTree} from './traceModels/traceTree';
- import type {TraceTreeNode} from './traceModels/traceTreeNode';
- import {
- TraceEventPriority,
- type TraceEvents,
- TraceScheduler,
- } from './traceRenderers/traceScheduler';
- import {TraceView as TraceViewModel} from './traceRenderers/traceView';
- import {
- type ViewManagerScrollAnchor,
- VirtualizedViewManager,
- } from './traceRenderers/virtualizedViewManager';
- import {
- searchInTraceTreeText,
- searchInTraceTreeTokens,
- } from './traceSearch/traceSearchEvaluator';
- import {TraceSearchInput} from './traceSearch/traceSearchInput';
- import {parseTraceSearch} from './traceSearch/traceTokenConverter';
- import {
- DEFAULT_TRACE_VIEW_PREFERENCES,
- loadTraceViewPreferences,
- } from './traceState/tracePreferences';
- import {
- TraceStateProvider,
- useTraceState,
- useTraceStateDispatch,
- useTraceStateEmitter,
- } from './traceState/traceStateProvider';
- import {Trace} from './trace';
- import {traceAnalytics} from './traceAnalytics';
- import {
- isAutogroupedNode,
- isParentAutogroupedNode,
- isSiblingAutogroupedNode,
- isTraceNode,
- } from './traceGuards';
- import {TraceMetaDataHeader} from './traceHeader';
- import {TracePreferencesDropdown} from './tracePreferencesDropdown';
- import {TraceShortcuts} from './traceShortcutsModal';
- import type {TraceReducer, TraceReducerState} from './traceState';
- import {
- traceNodeAdjacentAnalyticsProperties,
- traceNodeAnalyticsName,
- } from './traceTreeAnalytics';
- import TraceTypeWarnings from './traceTypeWarnings';
- import {useTraceOnLoad} from './useTraceOnLoad';
- import {useTraceQueryParamStateSync} from './useTraceQueryParamStateSync';
- import {useTraceScrollToPath} from './useTraceScrollToPath';
- function logTraceMetadata(
- tree: TraceTree,
- projects: Project[],
- organization: Organization
- ) {
- switch (tree.shape) {
- case TraceShape.BROKEN_SUBTRACES:
- case TraceShape.EMPTY_TRACE:
- case TraceShape.MULTIPLE_ROOTS:
- case TraceShape.ONE_ROOT:
- case TraceShape.NO_ROOT:
- case TraceShape.ONLY_ERRORS:
- case TraceShape.BROWSER_MULTIPLE_ROOTS:
- traceAnalytics.trackTraceMetadata(tree, projects, organization);
- break;
- default: {
- Sentry.captureMessage('Unknown trace type');
- }
- }
- }
- export function TraceView() {
- const params = useParams<{traceSlug?: string}>();
- const organization = useOrganization();
- const traceSlug = useMemo(() => {
- const slug = params.traceSlug?.trim() ?? '';
- // null and undefined are not valid trace slugs, but they can be passed
- // in the URL and need to check for their string coerced values.
- if (!slug || slug === 'null' || slug === 'undefined') {
- Sentry.withScope(scope => {
- scope.setFingerprint(['trace-null-slug']);
- Sentry.captureMessage(`Trace slug is empty`);
- });
- }
- return slug;
- }, [params.traceSlug]);
- const queryParams = useMemo(() => {
- const normalizedParams = normalizeDateTimeParams(qs.parse(location.search), {
- allowAbsolutePageDatetime: true,
- });
- const start = decodeScalar(normalizedParams.start);
- const timestamp: string | undefined = decodeScalar(normalizedParams.timestamp);
- const end = decodeScalar(normalizedParams.end);
- const statsPeriod = decodeScalar(normalizedParams.statsPeriod);
- const numberTimestamp = timestamp ? Number(timestamp) : undefined;
- return {start, end, statsPeriod, timestamp: numberTimestamp, useSpans: 1};
- }, []);
- const traceEventView = useMemo(() => {
- const {start, end, statsPeriod, timestamp} = queryParams;
- let startTimeStamp = start;
- let endTimeStamp = end;
- // If timestamp exists in the query params, we want to use it to set the start and end time
- // with a buffer of 1.5 days, for retrieving events belonging to the trace.
- if (typeof timestamp === 'number') {
- const buffer = 36 * 60 * 60 * 1000; // 1.5 days in milliseconds
- const dateFromTimestamp = new Date(timestamp * 1000);
- startTimeStamp = new Date(dateFromTimestamp.getTime() - buffer).toISOString();
- endTimeStamp = new Date(dateFromTimestamp.getTime() + buffer).toISOString();
- }
- return EventView.fromSavedQuery({
- id: undefined,
- name: `Events with Trace ID ${traceSlug}`,
- fields: ['title', 'event.type', 'project', 'timestamp'],
- orderby: '-timestamp',
- query: `trace:${traceSlug}`,
- projects: [ALL_ACCESS_PROJECTS],
- version: 2,
- start: startTimeStamp,
- end: endTimeStamp,
- range: !(startTimeStamp || endTimeStamp) ? statsPeriod : undefined,
- });
- }, [queryParams, traceSlug]);
- const preferences = useMemo(
- () =>
- loadTraceViewPreferences('trace-view-preferences') ||
- DEFAULT_TRACE_VIEW_PREFERENCES,
- []
- );
- const meta = useTraceMeta([{traceSlug, timestamp: queryParams.timestamp}]);
- const trace = useTrace({traceSlug, timestamp: queryParams.timestamp});
- const rootEvent = useTraceRootEvent(trace.data ?? null);
- const tree = useTraceTree({traceSlug, trace, meta, replay: null});
- const title = useMemo(() => {
- return `${t('Trace Details')} - ${traceSlug}`;
- }, [traceSlug]);
- return (
- <SentryDocumentTitle title={title} orgSlug={organization.slug}>
- <TraceStateProvider
- initialPreferences={preferences}
- preferencesStorageKey="trace-view-preferences"
- >
- <NoProjectMessage organization={organization}>
- <TraceExternalLayout>
- <TraceMetaDataHeader
- rootEventResults={rootEvent}
- tree={tree}
- metaResults={meta}
- organization={organization}
- traceSlug={traceSlug}
- traceEventView={traceEventView}
- />
- <TraceInnerLayout>
- <TraceViewWaterfall
- tree={tree}
- trace={trace}
- meta={meta}
- replay={null}
- rootEvent={rootEvent}
- traceSlug={traceSlug}
- traceEventView={traceEventView}
- organization={organization}
- source="performance"
- isEmbedded={false}
- />
- </TraceInnerLayout>
- </TraceExternalLayout>
- </NoProjectMessage>
- </TraceStateProvider>
- </SentryDocumentTitle>
- );
- }
- const TRACE_TAB: TraceReducerState['tabs']['tabs'][0] = {
- node: 'trace',
- label: t('Trace'),
- };
- const VITALS_TAB: TraceReducerState['tabs']['tabs'][0] = {
- node: 'vitals',
- label: t('Vitals'),
- };
- type TraceViewWaterfallProps = {
- isEmbedded: boolean;
- meta: TraceMetaQueryResults;
- organization: Organization;
- replay: ReplayRecord | null;
- rootEvent: UseApiQueryResult<EventTransaction, RequestError>;
- source: string;
- trace: UseApiQueryResult<TraceSplitResults<TraceTree.Transaction>, RequestError>;
- traceEventView: EventView;
- traceSlug: string | undefined;
- tree: TraceTree;
- replayTraces?: ReplayTrace[];
- /**
- * Ignore eventId or path query parameters and use the provided node.
- * Must be set at component mount, no reactivity
- */
- scrollToNode?: {eventId?: string; path?: TraceTree.NodePath[]};
- };
- export function TraceViewWaterfall(props: TraceViewWaterfallProps) {
- const api = useApi();
- const filters = usePageFilters();
- const {projects} = useProjects();
- const organization = useOrganization();
- const traceState = useTraceState();
- const traceDispatch = useTraceStateDispatch();
- const traceStateEmitter = useTraceStateEmitter();
- const [forceRender, rerender] = useReducer(x => (x + 1) % Number.MAX_SAFE_INTEGER, 0);
- const traceView = useMemo(() => new TraceViewModel(), []);
- const traceScheduler = useMemo(() => new TraceScheduler(), []);
- const projectsRef = useRef<Project[]>(projects);
- projectsRef.current = projects;
- const scrollQueueRef = useTraceScrollToPath(props.scrollToNode);
- const forceRerender = useCallback(() => {
- flushSync(rerender);
- }, []);
- useEffect(() => {
- trackAnalytics('performance_views.trace_view_v1_page_load', {
- organization: props.organization,
- source: props.source,
- });
- }, [props.organization, props.source]);
- const previouslyFocusedNodeRef = useRef<TraceTreeNode<TraceTree.NodeValue> | null>(
- null
- );
- const previouslyScrolledToNodeRef = useRef<TraceTreeNode<TraceTree.NodeValue> | null>(
- null
- );
- useEffect(() => {
- if (!props.replayTraces?.length || props.tree?.type !== 'trace') {
- return undefined;
- }
- const cleanup = props.tree.fetchAdditionalTraces({
- api,
- filters,
- replayTraces: props.replayTraces,
- organization: props.organization,
- urlParams: qs.parse(location.search),
- rerender: forceRerender,
- meta: props.meta,
- });
- return () => cleanup();
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [props.tree, props.replayTraces]);
- // Assign the trace state to a ref so we can access it without re-rendering
- const traceStateRef = useRef<TraceReducerState>(traceState);
- traceStateRef.current = traceState;
- const traceStatePreferencesRef = useRef<
- Pick<TraceReducerState['preferences'], 'autogroup' | 'missing_instrumentation'>
- >(traceState.preferences);
- traceStatePreferencesRef.current = traceState.preferences;
- // Initialize the view manager right after the state reducer
- const viewManager = useMemo(() => {
- return new VirtualizedViewManager(
- {
- list: {width: traceState.preferences.list.width},
- span_list: {width: 1 - traceState.preferences.list.width},
- },
- traceScheduler,
- traceView
- );
- // We only care about initial state when we initialize the view manager
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
- useLayoutEffect(() => {
- const onTraceViewChange: TraceEvents['set trace view'] = view => {
- traceView.setTraceView(view);
- viewManager.enqueueFOVQueryParamSync(traceView);
- };
- const onPhysicalSpaceChange: TraceEvents['set container physical space'] =
- container => {
- traceView.setTracePhysicalSpace(container, [
- 0,
- 0,
- container[2] * viewManager.columns.span_list.width,
- container[3],
- ]);
- };
- const onTraceSpaceChange: TraceEvents['initialize trace space'] = view => {
- traceView.setTraceSpace(view);
- };
- // These handlers have high priority because they are responsible for
- // updating the view coordinates. If we update them first, then any components downstream
- // that rely on the view coordinates will be in sync with the view.
- traceScheduler.on('set trace view', onTraceViewChange, TraceEventPriority.HIGH);
- traceScheduler.on('set trace space', onTraceSpaceChange, TraceEventPriority.HIGH);
- traceScheduler.on(
- 'set container physical space',
- onPhysicalSpaceChange,
- TraceEventPriority.HIGH
- );
- traceScheduler.on(
- 'initialize trace space',
- onTraceSpaceChange,
- TraceEventPriority.HIGH
- );
- return () => {
- traceScheduler.off('set trace view', onTraceViewChange);
- traceScheduler.off('set trace space', onTraceSpaceChange);
- traceScheduler.off('set container physical space', onPhysicalSpaceChange);
- traceScheduler.off('initialize trace space', onTraceSpaceChange);
- };
- }, [traceScheduler, traceView, viewManager]);
- // Initialize the tabs reducer when the tree initializes
- useLayoutEffect(() => {
- return traceDispatch({
- type: 'set roving count',
- items: props.tree.list.length - 1,
- });
- }, [props.tree.list.length, traceDispatch]);
- // Initialize the tabs reducer when the tree initializes
- useLayoutEffect(() => {
- if (props.tree.type !== 'trace') {
- return;
- }
- const newTabs = [TRACE_TAB];
- if (props.tree.vitals.size > 0) {
- const types = Array.from(props.tree.vital_types.values());
- const label = types.length > 1 ? t('Vitals') : capitalize(types[0]) + ' Vitals';
- newTabs.push({
- ...VITALS_TAB,
- label,
- });
- }
- if (props.tree.profiled_events.size > 0) {
- newTabs.push({
- node: 'profiles',
- label: 'Profiles',
- });
- }
- traceDispatch({
- type: 'initialize tabs reducer',
- payload: {
- current_tab: traceStateRef?.current?.tabs?.tabs?.[0],
- tabs: newTabs,
- last_clicked_tab: null,
- },
- });
- // We only want to update the tabs when the tree changes
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [props.tree]);
- const searchingRaf = useRef<{id: number | null} | null>(null);
- const onTraceSearch = useCallback(
- (
- query: string,
- activeNode: TraceTreeNode<TraceTree.NodeValue> | null,
- behavior: 'track result' | 'persist'
- ) => {
- if (searchingRaf.current?.id) {
- window.cancelAnimationFrame(searchingRaf.current.id);
- searchingRaf.current = null;
- }
- function done([matches, lookup, activeNodeSearchResult]) {
- // If the previous node is still in the results set, we want to keep it
- if (activeNodeSearchResult) {
- traceDispatch({
- type: 'set results',
- results: matches,
- resultsLookup: lookup,
- resultIteratorIndex: activeNodeSearchResult?.resultIteratorIndex,
- resultIndex: activeNodeSearchResult?.resultIndex,
- previousNode: activeNodeSearchResult,
- node: activeNode,
- });
- return;
- }
- if (activeNode && behavior === 'persist') {
- traceDispatch({
- type: 'set results',
- results: matches,
- resultsLookup: lookup,
- resultIteratorIndex: undefined,
- resultIndex: undefined,
- previousNode: null,
- node: activeNode,
- });
- return;
- }
- const resultIndex: number | undefined = matches?.[0]?.index;
- const resultIteratorIndex: number | undefined = matches?.[0] ? 0 : undefined;
- const node: TraceTreeNode<TraceTree.NodeValue> | null = matches?.[0]?.value;
- traceDispatch({
- type: 'set results',
- results: matches,
- resultsLookup: lookup,
- resultIteratorIndex: resultIteratorIndex,
- resultIndex: resultIndex,
- previousNode: activeNodeSearchResult,
- node,
- });
- }
- const tokens = parseTraceSearch(query);
- if (tokens) {
- searchingRaf.current = searchInTraceTreeTokens(
- props.tree,
- tokens,
- activeNode,
- done
- );
- } else {
- searchingRaf.current = searchInTraceTreeText(props.tree, query, activeNode, done);
- }
- },
- [traceDispatch, props.tree]
- );
- // We need to heavily debounce query string updates because the rest of the app is so slow
- // to rerender that it causes the search to drop frames on every keystroke...
- const QUERY_STRING_STATE_DEBOUNCE = 300;
- const queryStringAnimationTimeoutRef = useRef<{id: number} | null>(null);
- const setRowAsFocused = useCallback(
- (
- node: TraceTreeNode<TraceTree.NodeValue> | null,
- event: React.MouseEvent<HTMLElement> | null,
- resultsLookup: Map<TraceTreeNode<TraceTree.NodeValue>, number>,
- index: number | null,
- debounce: number = QUERY_STRING_STATE_DEBOUNCE
- ) => {
- // sync query string with the clicked node
- if (node) {
- if (queryStringAnimationTimeoutRef.current) {
- cancelAnimationTimeout(queryStringAnimationTimeoutRef.current);
- }
- queryStringAnimationTimeoutRef.current = requestAnimationTimeout(() => {
- const currentQueryStringPath = qs.parse(location.search).node;
- const nextNodePath = TraceTree.PathToNode(node);
- // Updating the query string with the same path is problematic because it causes
- // the entire sentry app to rerender, which is enough to cause jank and drop frames
- if (JSON.stringify(currentQueryStringPath) === JSON.stringify(nextNodePath)) {
- return;
- }
- const {eventId: _eventId, ...query} = qs.parse(location.search);
- browserHistory.replace({
- pathname: location.pathname,
- query: {
- ...query,
- node: nextNodePath,
- },
- });
- queryStringAnimationTimeoutRef.current = null;
- }, debounce);
- if (resultsLookup.has(node) && typeof index === 'number') {
- traceDispatch({
- type: 'set search iterator index',
- resultIndex: index,
- resultIteratorIndex: resultsLookup.get(node)!,
- });
- }
- if (isTraceNode(node)) {
- traceDispatch({type: 'activate tab', payload: TRACE_TAB.node});
- return;
- }
- traceDispatch({
- type: 'activate tab',
- payload: node,
- pin_previous: event?.metaKey,
- });
- }
- },
- [traceDispatch]
- );
- const onRowClick = useCallback(
- (
- node: TraceTreeNode<TraceTree.NodeValue>,
- event: React.MouseEvent<HTMLElement>,
- index: number
- ) => {
- trackAnalytics('trace.trace_layout.span_row_click', {
- organization,
- num_children: node.children.length,
- type: traceNodeAnalyticsName(node),
- project_platform:
- projects.find(p => p.slug === node.metadata.project_slug)?.platform || 'other',
- ...traceNodeAdjacentAnalyticsProperties(node),
- });
- if (traceStateRef.current.preferences.drawer.minimized) {
- traceDispatch({type: 'minimize drawer', payload: false});
- }
- setRowAsFocused(node, event, traceStateRef.current.search.resultsLookup, null, 0);
- if (traceStateRef.current.search.resultsLookup.has(node)) {
- const idx = traceStateRef.current.search.resultsLookup.get(node)!;
- traceDispatch({
- type: 'set search iterator index',
- resultIndex: index,
- resultIteratorIndex: idx,
- });
- } else if (traceStateRef.current.search.resultIteratorIndex !== null) {
- traceDispatch({type: 'clear search iterator index'});
- }
- traceDispatch({
- type: 'set roving index',
- action_source: 'click',
- index,
- node,
- });
- },
- [setRowAsFocused, traceDispatch, organization, projects]
- );
- const scrollRowIntoView = useCallback(
- (
- node: TraceTreeNode<TraceTree.NodeValue>,
- index: number,
- anchor?: ViewManagerScrollAnchor,
- force?: boolean
- ) => {
- // Last node we scrolled to is the same as the node we want to scroll to
- if (previouslyScrolledToNodeRef.current === node && !force) {
- return;
- }
- // Always scroll to the row vertically
- viewManager.scrollToRow(index, anchor);
- if (viewManager.isOutsideOfView(node)) {
- viewManager.scrollRowIntoViewHorizontally(node, 0, 48, 'measured');
- }
- previouslyScrolledToNodeRef.current = node;
- },
- [viewManager]
- );
- const onScrollToNode = useCallback(
- (
- node: TraceTreeNode<TraceTree.NodeValue>
- ): Promise<TraceTreeNode<TraceTree.NodeValue> | null> => {
- return TraceTree.ExpandToPath(props.tree, TraceTree.PathToNode(node), {
- api,
- organization: props.organization,
- preferences: traceStatePreferencesRef.current,
- }).then(() => {
- const maybeNode = TraceTree.Find(props.tree.root, n => n === node);
- if (!maybeNode) {
- return null;
- }
- const index = TraceTree.EnforceVisibility(props.tree, maybeNode);
- if (index === -1) {
- return null;
- }
- scrollRowIntoView(maybeNode, index, 'center if outside', true);
- traceDispatch({
- type: 'set roving index',
- node: maybeNode,
- index: index,
- action_source: 'click',
- });
- if (traceStateRef.current.search.resultsLookup.has(maybeNode)) {
- traceDispatch({
- type: 'set search iterator index',
- resultIndex: index,
- resultIteratorIndex:
- traceStateRef.current.search.resultsLookup.get(maybeNode)!,
- });
- } else if (traceStateRef.current.search.resultIteratorIndex !== null) {
- traceDispatch({type: 'clear search iterator index'});
- }
- return maybeNode;
- });
- },
- [api, props.organization, scrollRowIntoView, props.tree, traceDispatch]
- );
- const onTabScrollToNode = useCallback(
- (
- node: TraceTreeNode<TraceTree.NodeValue>
- ): Promise<TraceTreeNode<TraceTree.NodeValue> | null> => {
- return onScrollToNode(node).then(maybeNode => {
- if (maybeNode) {
- setRowAsFocused(
- maybeNode,
- null,
- traceStateRef.current.search.resultsLookup,
- null,
- 0
- );
- }
- return maybeNode;
- });
- },
- [onScrollToNode, setRowAsFocused]
- );
- // Callback that is invoked when the trace loads and reaches its initialied state,
- // that is when the trace tree data and any data that the trace depends on is loaded,
- // but the trace is not yet rendered in the view.
- const onTraceLoad = useCallback(() => {
- logTraceMetadata(props.tree, projectsRef.current, props.organization);
- // The tree has the data fetched, but does not yet respect the user preferences.
- // We will autogroup and inject missing instrumentation if the preferences are set.
- // and then we will perform a search to find the node the user is interested in.
- const query = qs.parse(location.search);
- if (query.fov && typeof query.fov === 'string') {
- viewManager.maybeInitializeTraceViewFromQS(query.fov);
- }
- if (traceStateRef.current.preferences.missing_instrumentation) {
- TraceTree.DetectMissingInstrumentation(props.tree.root);
- }
- if (traceStateRef.current.preferences.autogroup.sibling) {
- TraceTree.AutogroupSiblingSpanNodes(props.tree.root);
- }
- if (traceStateRef.current.preferences.autogroup.parent) {
- TraceTree.AutogroupDirectChildrenSpanNodes(props.tree.root);
- }
- // Construct the visual representation of the tree
- props.tree.build();
- const eventId = scrollQueueRef.current?.eventId;
- const [type, path] = scrollQueueRef.current?.path?.[0]?.split('-') ?? [];
- scrollQueueRef.current = null;
- let node =
- (path === 'root' && props.tree.root.children[0]) ||
- (path && TraceTree.FindByID(props.tree.root, path)) ||
- (eventId && TraceTree.FindByID(props.tree.root, eventId)) ||
- null;
- // If the node points to a span, but we found an autogrouped node, then
- // perform another search inside the autogrouped node to find the more detailed
- // location of the span. This is necessary because the id of the autogrouped node
- // is in some cases inferred from the spans it contains and searching by the span id
- // just gives us the first match which may not be the one the user is looking for.
- if (node) {
- if (isAutogroupedNode(node) && type !== 'ag') {
- if (isParentAutogroupedNode(node)) {
- node = TraceTree.FindByID(node.head, eventId ?? path) ?? node;
- } else if (isSiblingAutogroupedNode(node)) {
- node = node.children.find(n => TraceTree.FindByID(n, eventId ?? path)) ?? node;
- }
- }
- }
- const index = node ? TraceTree.EnforceVisibility(props.tree, node) : -1;
- if (traceStateRef.current.search.query) {
- onTraceSearch(traceStateRef.current.search.query, node, 'persist');
- }
- if (index === -1 || !node) {
- const hasScrollComponent = !!(path || eventId);
- if (hasScrollComponent) {
- Sentry.withScope(scope => {
- scope.setFingerprint(['trace-view-scroll-to-node-error']);
- scope.captureMessage('Failed to scroll to node in trace tree');
- });
- }
- return;
- }
- // At load time, we want to scroll the row into view, but we need to wait for the view
- // to initialize before we can do that. We listen for the 'initialize virtualized list' and scroll
- // to the row in the view if it is not in view yet. If its in the view, then scroll to it immediately.
- traceScheduler.once('initialize virtualized list', () => {
- function onTargetRowMeasure() {
- if (!node || !viewManager.row_measurer.cache.has(node)) {
- return;
- }
- viewManager.row_measurer.off('row measure end', onTargetRowMeasure);
- if (viewManager.isOutsideOfView(node)) {
- viewManager.scrollRowIntoViewHorizontally(node!, 0, 48, 'measured');
- }
- }
- viewManager.scrollToRow(index, 'center');
- viewManager.row_measurer.on('row measure end', onTargetRowMeasure);
- previouslyScrolledToNodeRef.current = node;
- setRowAsFocused(node, null, traceStateRef.current.search.resultsLookup, index);
- traceDispatch({
- type: 'set roving index',
- node: node,
- index: index,
- action_source: 'load',
- });
- });
- }, [
- setRowAsFocused,
- traceDispatch,
- onTraceSearch,
- viewManager,
- traceScheduler,
- scrollQueueRef,
- props.tree,
- props.organization,
- ]);
- // Setup the middleware for the trace reducer
- useLayoutEffect(() => {
- const beforeTraceNextStateDispatch: DispatchingReducerMiddleware<
- typeof TraceReducer
- >['before next state'] = (prevState, nextState, action) => {
- // This effect is responsible fo syncing the keyboard interactions with the search results,
- // we observe the changes to the roving tab index and search results and react by syncing the state.
- const {node: nextRovingNode, index: nextRovingTabIndex} = nextState.rovingTabIndex;
- const {resultIndex: nextSearchResultIndex} = nextState.search;
- if (
- nextRovingNode &&
- action.type === 'set roving index' &&
- action.action_source !== 'click' &&
- typeof nextRovingTabIndex === 'number' &&
- prevState.rovingTabIndex.node !== nextRovingNode
- ) {
- // When the roving tabIndex updates mark the node as focused and sync search results
- setRowAsFocused(
- nextRovingNode,
- null,
- nextState.search.resultsLookup,
- nextRovingTabIndex
- );
- if (action.type === 'set roving index' && action.action_source === 'keyboard') {
- scrollRowIntoView(nextRovingNode, nextRovingTabIndex, undefined);
- }
- if (nextState.search.resultsLookup.has(nextRovingNode)) {
- const idx = nextState.search.resultsLookup.get(nextRovingNode)!;
- traceDispatch({
- type: 'set search iterator index',
- resultIndex: nextRovingTabIndex,
- resultIteratorIndex: idx,
- });
- } else if (nextState.search.resultIteratorIndex !== null) {
- traceDispatch({type: 'clear search iterator index'});
- }
- } else if (
- typeof nextSearchResultIndex === 'number' &&
- prevState.search.resultIndex !== nextSearchResultIndex &&
- action.type !== 'set search iterator index'
- ) {
- // If the search result index changes, mark the node as focused and scroll it into view
- const nextNode = props.tree.list[nextSearchResultIndex];
- setRowAsFocused(
- nextNode,
- null,
- nextState.search.resultsLookup,
- nextSearchResultIndex
- );
- scrollRowIntoView(nextNode, nextSearchResultIndex, 'center if outside');
- }
- };
- traceStateEmitter.on('before next state', beforeTraceNextStateDispatch);
- return () => {
- traceStateEmitter.off('before next state', beforeTraceNextStateDispatch);
- };
- }, [
- props.tree,
- onTraceSearch,
- traceStateEmitter,
- traceDispatch,
- setRowAsFocused,
- scrollRowIntoView,
- ]);
- // Setup the middleware for the view manager and store the list width as a preference
- useLayoutEffect(() => {
- function onDividerResizeEnd(list_width: number) {
- traceDispatch({
- type: 'set list width',
- payload: list_width,
- });
- }
- traceScheduler.on('divider resize end', onDividerResizeEnd);
- return () => {
- traceScheduler.off('divider resize end', onDividerResizeEnd);
- };
- }, [traceScheduler, traceDispatch]);
- const [traceGridRef, setTraceGridRef] = useState<HTMLElement | null>(null);
- // Memoized because it requires tree traversal
- const shape = useMemo(() => props.tree.shape, [props.tree]);
- useLayoutEffect(() => {
- if (props.tree.type !== 'trace') {
- return undefined;
- }
- traceScheduler.dispatch('initialize trace space', [
- props.tree.root.space[0],
- 0,
- props.tree.root.space[1],
- 1,
- ]);
- // Whenever the timeline changes, update the trace space and trigger a redraw
- const onTraceTimelineChange = (s: [number, number]) => {
- traceScheduler.dispatch('set trace space', [s[0], 0, s[1], 1]);
- };
- props.tree.on('trace timeline change', onTraceTimelineChange);
- return () => {
- props.tree.off('trace timeline change', onTraceTimelineChange);
- };
- }, [viewManager, traceScheduler, props.tree]);
- const onLoadScrollStatus = useTraceOnLoad({
- onTraceLoad,
- pathToNodeOrEventId: scrollQueueRef.current,
- tree: props.tree,
- });
- // Sync part of the state with the URL
- const traceQueryStateSync = useMemo(() => {
- return {search: traceState.search.query};
- }, [traceState.search.query]);
- useTraceQueryParamStateSync(traceQueryStateSync);
- const onAutogroupChange = useCallback(() => {
- const value = !traceState.preferences.autogroup.parent;
- if (!value) {
- let removeCount = 0;
- removeCount += TraceTree.RemoveSiblingAutogroupNodes(props.tree.root);
- removeCount += TraceTree.RemoveDirectChildrenAutogroupNodes(props.tree.root);
- addSuccessMessage(
- removeCount > 0
- ? tct('Autogrouping disabled, removed [count] autogroup spans', {
- count: removeCount,
- })
- : t('Autogrouping disabled')
- );
- } else {
- let autogroupCount = 0;
- autogroupCount += TraceTree.AutogroupSiblingSpanNodes(props.tree.root);
- autogroupCount += TraceTree.AutogroupDirectChildrenSpanNodes(props.tree.root);
- addSuccessMessage(
- autogroupCount > 0
- ? tct('Autogrouping enabled, detected [count] autogrouping spans', {
- count: autogroupCount,
- })
- : t('Autogrouping enabled')
- );
- }
- traceAnalytics.trackAutogroupingPreferenceChange(props.organization, value);
- props.tree.rebuild();
- traceDispatch({
- type: 'set autogrouping',
- payload: value,
- });
- }, [traceDispatch, traceState.preferences.autogroup, props.tree, props.organization]);
- const onMissingInstrumentationChange = useCallback(() => {
- const value = !traceState.preferences.missing_instrumentation;
- if (!value) {
- const removeCount = TraceTree.RemoveMissingInstrumentationNodes(props.tree.root);
- addSuccessMessage(
- removeCount > 0
- ? tct(
- 'Missing instrumentation disabled, removed [count] missing instrumentation spans',
- {
- count: removeCount,
- }
- )
- : t('Missing instrumentation disabled')
- );
- } else {
- const missingInstrumentationCount = TraceTree.DetectMissingInstrumentation(
- props.tree.root
- );
- addSuccessMessage(
- missingInstrumentationCount > 0
- ? tct(
- 'Missing instrumentation enabled, found [count] missing instrumentation spans',
- {
- count: missingInstrumentationCount,
- }
- )
- : t('Missing instrumentation enabled')
- );
- }
- traceAnalytics.trackMissingInstrumentationPreferenceChange(props.organization, value);
- props.tree.rebuild();
- traceDispatch({
- type: 'set missing instrumentation',
- payload: value,
- });
- }, [
- traceDispatch,
- traceState.preferences.missing_instrumentation,
- props.tree,
- props.organization,
- ]);
- return (
- <Fragment>
- <TraceTypeWarnings
- tree={props.tree}
- traceSlug={props.traceSlug}
- organization={organization}
- />
- <TraceToolbar>
- <TraceSearchInput onTraceSearch={onTraceSearch} organization={organization} />
- <TraceResetZoomButton
- viewManager={viewManager}
- organization={props.organization}
- />
- <TraceShortcuts />
- <TracePreferencesDropdown
- autogroup={
- traceState.preferences.autogroup.parent &&
- traceState.preferences.autogroup.sibling
- }
- missingInstrumentation={traceState.preferences.missing_instrumentation}
- onAutogroupChange={onAutogroupChange}
- onMissingInstrumentationChange={onMissingInstrumentationChange}
- />
- </TraceToolbar>
- <TraceGrid layout={traceState.preferences.layout} ref={setTraceGridRef}>
- <Trace
- trace={props.tree}
- rerender={rerender}
- trace_id={props.traceSlug}
- onRowClick={onRowClick}
- onTraceSearch={onTraceSearch}
- previouslyFocusedNodeRef={previouslyFocusedNodeRef}
- manager={viewManager}
- scheduler={traceScheduler}
- forceRerender={forceRender}
- isEmbedded={props.isEmbedded}
- isLoading={props.tree.type === 'loading' || onLoadScrollStatus === 'pending'}
- />
- {props.tree.type === 'loading' || onLoadScrollStatus === 'pending' ? (
- <TraceLoading />
- ) : props.tree.type === 'error' ? (
- <TraceError />
- ) : props.tree.type === 'empty' ? (
- <TraceEmpty />
- ) : null}
- <TraceDrawer
- replay={props.replay}
- meta={props.meta}
- traceType={shape}
- trace={props.tree}
- traceGridRef={traceGridRef}
- manager={viewManager}
- scheduler={traceScheduler}
- onTabScrollToNode={onTabScrollToNode}
- onScrollToNode={onScrollToNode}
- rootEventResults={props.rootEvent}
- traceEventView={props.traceEventView}
- />
- </TraceGrid>
- </Fragment>
- );
- }
- function TraceResetZoomButton(props: {
- organization: Organization;
- viewManager: VirtualizedViewManager;
- }) {
- const onResetZoom = useCallback(() => {
- traceAnalytics.trackResetZoom(props.organization);
- props.viewManager.resetZoom();
- }, [props.viewManager, props.organization]);
- return (
- <ResetZoomButton
- size="xs"
- onClick={onResetZoom}
- ref={props.viewManager.registerResetZoomRef}
- >
- {t('Reset Zoom')}
- </ResetZoomButton>
- );
- }
- const ResetZoomButton = styled(Button)`
- transition: opacity 0.2s 0.5s ease-in-out;
- &[disabled] {
- cursor: not-allowed;
- opacity: 0.65;
- }
- `;
- const TraceExternalLayout = styled('div')`
- display: flex;
- flex-direction: column;
- flex: 1 1 100%;
- ~ footer {
- display: none;
- }
- `;
- const TraceInnerLayout = styled('div')`
- display: flex;
- flex-direction: column;
- flex: 1 1 100%;
- padding: ${space(2)};
- background-color: ${p => p.theme.background};
- `;
- const TraceToolbar = styled('div')`
- flex-grow: 0;
- display: grid;
- grid-template-columns: 1fr min-content min-content min-content;
- gap: ${space(1)};
- `;
- const TraceGrid = styled('div')<{
- layout: 'drawer bottom' | 'drawer left' | 'drawer right';
- }>`
- border: 1px solid ${p => p.theme.border};
- flex: 1 1 100%;
- display: grid;
- border-radius: ${p => p.theme.borderRadius};
- overflow: hidden;
- position: relative;
- /* false positive for grid layout */
- /* stylelint-disable */
- grid-template-areas: ${p =>
- p.layout === 'drawer bottom'
- ? `
- 'trace'
- 'drawer'
- `
- : p.layout === 'drawer left'
- ? `'drawer trace'`
- : `'trace drawer'`};
- grid-template-columns: ${p =>
- p.layout === 'drawer bottom'
- ? '1fr'
- : p.layout === 'drawer left'
- ? 'min-content 1fr'
- : '1fr min-content'};
- grid-template-rows: 1fr auto;
- `;
- const LoadingContainer = styled('div')<{animate: boolean; error?: boolean}>`
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- left: 50%;
- top: 50%;
- position: absolute;
- height: auto;
- font-size: ${p => p.theme.fontSizeMedium};
- color: ${p => p.theme.gray300};
- z-index: 30;
- padding: 24px;
- background-color: ${p => p.theme.background};
- border-radius: ${p => p.theme.borderRadius};
- border: 1px solid ${p => p.theme.border};
- transform-origin: 50% 50%;
- transform: translate(-50%, -50%);
- animation: ${p =>
- p.animate
- ? `${p.error ? 'showLoadingContainerShake' : 'showLoadingContainer'} 300ms cubic-bezier(0.61, 1, 0.88, 1) forwards`
- : 'none'};
- @keyframes showLoadingContainer {
- from {
- opacity: 0.6;
- transform: scale(0.99) translate(-50%, -50%);
- }
- to {
- opacity: 1;
- transform: scale(1) translate(-50%, -50%);
- }
- }
- @keyframes showLoadingContainerShake {
- 0% {
- transform: translate(-50%, -50%);
- }
- 25% {
- transform: translate(-51%, -50%);
- }
- 75% {
- transform: translate(-49%, -50%);
- }
- 100% {
- transform: translate(-50%, -50%);
- }
- }
- `;
- function TraceLoading() {
- return (
- // Dont flash the animation on load because it's annoying
- <LoadingContainer animate={false}>
- <NoMarginIndicator size={24}>
- <div>{t('Assembling the trace')}</div>
- </NoMarginIndicator>
- </LoadingContainer>
- );
- }
- function TraceError() {
- const linkref = useRef<HTMLAnchorElement>(null);
- const feedback = useFeedbackWidget({buttonRef: linkref});
- useEffect(() => {
- traceAnalytics.trackFailedToFetchTraceState();
- }, []);
- return (
- <LoadingContainer animate error>
- <div>{t('Ughhhhh, we failed to load your trace...')}</div>
- <div>
- {t('Seeing this often? Send us ')}
- {feedback ? (
- <a href="#" ref={linkref}>
- {t('feedback')}
- </a>
- ) : (
- <a href="mailto:support@sentry.io?subject=Trace%20fails%20to%20load">
- {t('feedback')}
- </a>
- )}
- </div>
- </LoadingContainer>
- );
- }
- function TraceEmpty() {
- const linkref = useRef<HTMLAnchorElement>(null);
- const feedback = useFeedbackWidget({buttonRef: linkref});
- useEffect(() => {
- traceAnalytics.trackEmptyTraceState();
- }, []);
- return (
- <LoadingContainer animate>
- <div>{t('This trace does not contain any data?!')}</div>
- <div>
- {t('Seeing this often? Send us ')}
- {feedback ? (
- <a href="#" ref={linkref}>
- {t('feedback')}
- </a>
- ) : (
- <a href="mailto:support@sentry.io?subject=Trace%20does%20not%20contain%20data">
- {t('feedback')}
- </a>
- )}
- </div>
- </LoadingContainer>
- );
- }
- const NoMarginIndicator = styled(LoadingIndicator)`
- margin: 0;
- `;
|