123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885 |
- 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 {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 type 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 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 useProjects from 'sentry/utils/useProjects';
- import {TraceTree} from 'sentry/views/performance/newTraceDetails/traceModels/traceTree';
- import {useDividerResizeSync} from 'sentry/views/performance/newTraceDetails/useDividerResizeSync';
- import {useTraceSpaceListeners} from 'sentry/views/performance/newTraceDetails/useTraceSpaceListeners';
- import type {ReplayTrace} from 'sentry/views/replays/detail/trace/useReplayTraces';
- import type {ReplayRecord} from 'sentry/views/replays/types';
- import type {TraceMetaQueryResults} from './traceApi/useTraceMeta';
- import {TraceDrawer} from './traceDrawer/traceDrawer';
- import type {TraceTreeNode} from './traceModels/traceTreeNode';
- import {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 {
- useTraceState,
- useTraceStateDispatch,
- useTraceStateEmitter,
- } from './traceState/traceStateProvider';
- import {Trace} from './trace';
- import {traceAnalytics} from './traceAnalytics';
- import {
- isAutogroupedNode,
- isParentAutogroupedNode,
- isSiblingAutogroupedNode,
- isTraceNode,
- } from './traceGuards';
- import {TracePreferencesDropdown} from './tracePreferencesDropdown';
- import {TraceResetZoomButton} from './traceResetZoomButton';
- import {TraceShortcuts} from './traceShortcutsModal';
- import type {TraceReducer, TraceReducerState} from './traceState';
- import {
- traceNodeAdjacentAnalyticsProperties,
- traceNodeAnalyticsName,
- } from './traceTreeAnalytics';
- import TraceTypeWarnings from './traceTypeWarnings';
- import {TraceWaterfallState} from './traceWaterfallState';
- import {useTraceOnLoad} from './useTraceOnLoad';
- import {useTraceQueryParamStateSync} from './useTraceQueryParamStateSync';
- import {useTraceScrollToPath} from './useTraceScrollToPath';
- import {useTraceTimelineChangeSync} from './useTraceTimelineChangeSync';
- const TRACE_TAB: TraceReducerState['tabs']['tabs'][0] = {
- node: 'trace',
- label: t('Trace'),
- };
- const VITALS_TAB: TraceReducerState['tabs']['tabs'][0] = {
- node: 'vitals',
- label: t('Vitals'),
- };
- export interface TraceWaterfallProps {
- 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[];
- }
- export function TraceWaterfall(props: TraceWaterfallProps) {
- 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(undefined);
- 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
- }, []);
- // 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(() => {
- traceAnalytics.trackTraceShape(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,
- ]);
- const [traceGridRef, setTraceGridRef] = useState<HTMLElement | null>(null);
- // Memoized because it requires tree traversal
- const shape = useMemo(() => props.tree.shape, [props.tree]);
- useTraceTimelineChangeSync({
- tree: props.tree,
- traceScheduler,
- });
- useTraceSpaceListeners({
- view: traceView,
- viewManager,
- traceScheduler,
- });
- useDividerResizeSync(traceScheduler);
- 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}
- isLoading={props.tree.type === 'loading' || onLoadScrollStatus === 'pending'}
- />
- {props.tree.type === 'loading' || onLoadScrollStatus === 'pending' ? (
- <TraceWaterfallState.Loading />
- ) : props.tree.type === 'error' ? (
- <TraceWaterfallState.Error />
- ) : props.tree.type === 'empty' ? (
- <TraceWaterfallState.Empty />
- ) : 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>
- );
- }
- const TraceToolbar = styled('div')`
- flex-grow: 0;
- display: grid;
- grid-template-columns: 1fr min-content min-content min-content;
- gap: ${space(1)};
- `;
- export const TraceGrid = styled('div')<{
- layout: 'drawer bottom' | 'drawer left' | 'drawer right';
- }>`
- --info: ${p => p.theme.purple400};
- --warning: ${p => p.theme.yellow300};
- --debug: ${p => p.theme.blue300};
- --error: ${p => p.theme.error};
- --fatal: ${p => p.theme.error};
- --default: ${p => p.theme.gray300};
- --unknown: ${p => p.theme.gray300};
- --profile: ${p => p.theme.purple300};
- --autogrouped: ${p => p.theme.blue300};
- --performance-issue: ${p => p.theme.blue300};
- 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;
- `;
|