Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Adds span thread info #4579

Merged
merged 11 commits into from
Feb 25, 2025
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

## Unreleased

### Features

- Add thread information to spans ([#4579](https://github.com/getsentry/sentry-react-native/pull/4579))

### Fixes

- Considers the `SENTRY_DISABLE_AUTO_UPLOAD` and `SENTRY_DISABLE_NATIVE_DEBUG_UPLOAD` environment variables in the configuration of the Sentry Android Gradle Plugin for Expo plugin ([#4583](https://github.com/getsentry/sentry-react-native/pull/4583))
Expand Down
19 changes: 11 additions & 8 deletions packages/core/src/js/tracing/integrations/appStart.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable complexity */
/* eslint-disable complexity, max-lines */
import type { Client, Event, Integration, SpanJSON, TransactionEvent } from '@sentry/core';
import {
getCapturedScopesOnSpan,
Expand Down Expand Up @@ -26,6 +26,7 @@ import {
} from '../ops';
import { SPAN_ORIGIN_AUTO_APP_START, SPAN_ORIGIN_MANUAL_APP_START } from '../origin';
import { SEMANTIC_ATTRIBUTE_SENTRY_OP } from '../semanticAttributes';
import { setMainThreadInfo } from '../span';
import { createChildSpanJSON, createSpanJSON, getBundleStartTimestampMs } from '../utils';

const INTEGRATION_NAME = 'AppStart';
Expand Down Expand Up @@ -384,15 +385,17 @@ function createJSExecutionStartSpan(
function convertNativeSpansToSpanJSON(parentSpan: SpanJSON, nativeSpans: NativeAppStartResponse['spans']): SpanJSON[] {
return nativeSpans.map(span => {
if (span.description === 'UIKit init') {
return createUIKitSpan(parentSpan, span);
return setMainThreadInfo(createUIKitSpan(parentSpan, span));
}

return createChildSpanJSON(parentSpan, {
description: span.description,
start_timestamp: span.start_timestamp_ms / 1000,
timestamp: span.end_timestamp_ms / 1000,
origin: SPAN_ORIGIN_AUTO_APP_START,
});
return setMainThreadInfo(
createChildSpanJSON(parentSpan, {
description: span.description,
start_timestamp: span.start_timestamp_ms / 1000,
timestamp: span.end_timestamp_ms / 1000,
origin: SPAN_ORIGIN_AUTO_APP_START,
}),
);
});
}

Expand Down
3 changes: 2 additions & 1 deletion packages/core/src/js/tracing/reactnativetracing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getClient } from '@sentry/core';

import { isWeb } from '../utils/environment';
import { getDevServer } from './../integrations/debugsymbolicatorutils';
import { addDefaultOpForSpanFrom, defaultIdleOptions } from './span';
import { addDefaultOpForSpanFrom, addThreadInfoToSpan, defaultIdleOptions } from './span';

export const INTEGRATION_NAME = 'ReactNativeTracing';

Expand Down Expand Up @@ -119,6 +119,7 @@ export const reactNativeTracingIntegration = (

const setup = (client: Client): void => {
addDefaultOpForSpanFrom(client);
addThreadInfoToSpan(client);

instrumentOutgoingRequests(client, {
traceFetch: finalOptions.traceFetch,
Expand Down
27 changes: 26 additions & 1 deletion packages/core/src/js/tracing/span.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Client, Scope, Span, StartSpanOptions } from '@sentry/core';
import type { Client, Scope, Span, SpanJSON, StartSpanOptions } from '@sentry/core';
import {
generatePropagationContext,
getActiveSpan,
Expand Down Expand Up @@ -154,3 +154,28 @@ export function addDefaultOpForSpanFrom(client: Client): void {
}
});
}

export const SPAN_THREAD_NAME = 'thread.name';
export const SPAN_THREAD_NAME_MAIN = 'main';
export const SPAN_THREAD_NAME_JAVASCRIPT = 'javascript';

/**
* Adds Javascript thread info to spans.
* Ref: https://reactnative.dev/architecture/threading-model
*/
export function addThreadInfoToSpan(client: Client): void {
client.on('spanStart', (span: Span) => {
if (!spanToJSON(span).data?.[SPAN_THREAD_NAME]) {
span.setAttribute(SPAN_THREAD_NAME, SPAN_THREAD_NAME_JAVASCRIPT);
}
});
}

/**
* Sets the Main thread info to the span.
*/
export function setMainThreadInfo(spanJSON: SpanJSON): SpanJSON {
spanJSON.data = spanJSON.data || {};
spanJSON.data[SPAN_THREAD_NAME] = SPAN_THREAD_NAME_MAIN;
return spanJSON;
}
3 changes: 3 additions & 0 deletions packages/core/test/tracing/integrations/appStart.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import {
setRootComponentCreationTimestampMs,
} from '../../../src/js/tracing/integrations/appStart';
import { SPAN_ORIGIN_AUTO_APP_START, SPAN_ORIGIN_MANUAL_APP_START } from '../../../src/js/tracing/origin';
import { SPAN_THREAD_NAME, SPAN_THREAD_NAME_MAIN } from '../../../src/js/tracing/span';
import { getTimeOriginMilliseconds } from '../../../src/js/tracing/utils';
import { RN_GLOBAL_OBJ } from '../../../src/js/utils/worldwide';
import { NATIVE } from '../../../src/js/wrapper';
Expand Down Expand Up @@ -252,6 +253,7 @@ describe('App Start Integration', () => {
data: {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: appStartRootSpan!.op,
[SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN]: SPAN_ORIGIN_AUTO_APP_START,
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_MAIN,
},
}),
);
Expand Down Expand Up @@ -612,6 +614,7 @@ describe('App Start Integration', () => {
data: {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: appStartRootSpan!.op,
[SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN]: SPAN_ORIGIN_AUTO_APP_START,
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_MAIN,
},
}),
);
Expand Down
6 changes: 6 additions & 0 deletions packages/core/test/tracing/reactnativenavigation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import {
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
} from '../../src/js/tracing/semanticAttributes';
import { SPAN_THREAD_NAME, SPAN_THREAD_NAME_JAVASCRIPT } from '../../src/js/tracing/span';
import { getDefaultTestClientOptions, TestClient } from '../mocks/client';

interface MockEventsRegistry extends EventsRegistry {
Expand Down Expand Up @@ -87,6 +88,7 @@ describe('React Native Navigation Instrumentation', () => {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'navigation',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 1,
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: 'idleTimeout',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
}),
}),
Expand Down Expand Up @@ -131,6 +133,7 @@ describe('React Native Navigation Instrumentation', () => {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'navigation',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 1,
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: 'idleTimeout',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
}),
}),
Expand Down Expand Up @@ -206,6 +209,7 @@ describe('React Native Navigation Instrumentation', () => {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'navigation',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 1,
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: 'idleTimeout',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
}),
}),
Expand Down Expand Up @@ -294,6 +298,7 @@ describe('React Native Navigation Instrumentation', () => {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'navigation',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 1,
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: 'idleTimeout',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
}),
}),
Expand Down Expand Up @@ -342,6 +347,7 @@ describe('React Native Navigation Instrumentation', () => {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'navigation',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 1,
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: 'idleTimeout',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
}),
}),
Expand Down
6 changes: 5 additions & 1 deletion packages/core/test/tracing/reactnavigation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
} from '../../src/js/tracing/semanticAttributes';
import { DEFAULT_NAVIGATION_SPAN_NAME } from '../../src/js/tracing/span';
import { DEFAULT_NAVIGATION_SPAN_NAME, SPAN_THREAD_NAME, SPAN_THREAD_NAME_JAVASCRIPT } from '../../src/js/tracing/span';
import { RN_GLOBAL_OBJ } from '../../src/js/utils/worldwide';
import { getDefaultTestClientOptions, TestClient } from '../mocks/client';
import { NATIVE } from '../mockWrapper';
Expand Down Expand Up @@ -83,6 +83,7 @@ describe('ReactNavigationInstrumentation', () => {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'navigation',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 1,
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: 'idleTimeout',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
}),
}),
Expand Down Expand Up @@ -192,6 +193,7 @@ describe('ReactNavigationInstrumentation', () => {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'navigation',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 1,
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: 'idleTimeout',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
}),
}),
Expand Down Expand Up @@ -229,6 +231,7 @@ describe('ReactNavigationInstrumentation', () => {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'navigation',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 1,
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: 'idleTimeout',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
}),
}),
Expand Down Expand Up @@ -268,6 +271,7 @@ describe('ReactNavigationInstrumentation', () => {
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'navigation',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 1,
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: 'idleTimeout',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
}),
}),
Expand Down
9 changes: 9 additions & 0 deletions packages/core/test/tracing/reactnavigation.ttid.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { startSpanManual } from '../../src/js';
import { TimeToFullDisplay, TimeToInitialDisplay } from '../../src/js/tracing';
import { _setAppStartEndTimestampMs } from '../../src/js/tracing/integrations/appStart';
import { SPAN_ORIGIN_AUTO_NAVIGATION_REACT_NAVIGATION, SPAN_ORIGIN_AUTO_UI_TIME_TO_DISPLAY, SPAN_ORIGIN_MANUAL_UI_TIME_TO_DISPLAY } from '../../src/js/tracing/origin';
import { SPAN_THREAD_NAME, SPAN_THREAD_NAME_JAVASCRIPT } from '../../src/js/tracing/span';
import { isHermesEnabled, notWeb } from '../../src/js/utils/environment';
import { createSentryFallbackEventEmitter } from '../../src/js/utils/sentryeventemitterfallback';
import { RN_GLOBAL_OBJ } from '../../src/js/utils/worldwide';
Expand Down Expand Up @@ -80,6 +81,7 @@ describe('React Navigation - TTID', () => {
data: {
'sentry.op': 'ui.load.initial_display',
'sentry.origin': SPAN_ORIGIN_AUTO_UI_TIME_TO_DISPLAY,
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
description: 'New Screen initial display',
op: 'ui.load.initial_display',
Expand Down Expand Up @@ -110,6 +112,7 @@ describe('React Navigation - TTID', () => {
data: {
'sentry.op': 'ui.load.initial_display',
'sentry.origin': SPAN_ORIGIN_AUTO_UI_TIME_TO_DISPLAY,
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
description: 'New Screen initial display',
op: 'ui.load.initial_display',
Expand Down Expand Up @@ -146,6 +149,7 @@ describe('React Navigation - TTID', () => {
data: {
'sentry.op': 'ui.load.initial_display',
'sentry.origin': SPAN_ORIGIN_AUTO_UI_TIME_TO_DISPLAY,
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
description: 'New Screen initial display',
op: 'ui.load.initial_display',
Expand Down Expand Up @@ -203,6 +207,7 @@ describe('React Navigation - TTID', () => {
'sentry.op': 'navigation.processing',
'sentry.origin': SPAN_ORIGIN_AUTO_NAVIGATION_REACT_NAVIGATION,
'sentry.source': 'custom',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
description: 'Navigation dispatch to screen New Screen mounted',
op: 'navigation.processing',
Expand Down Expand Up @@ -231,6 +236,7 @@ describe('React Navigation - TTID', () => {
'sentry.op': 'navigation.processing',
'sentry.origin': SPAN_ORIGIN_AUTO_NAVIGATION_REACT_NAVIGATION,
'sentry.source': 'custom',
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
description: 'Navigation dispatch to screen Initial Screen mounted',
op: 'navigation.processing',
Expand Down Expand Up @@ -261,6 +267,7 @@ describe('React Navigation - TTID', () => {
data: {
'sentry.op': 'ui.load.initial_display',
'sentry.origin': SPAN_ORIGIN_AUTO_UI_TIME_TO_DISPLAY,
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
description: 'Initial Screen initial display',
op: 'ui.load.initial_display',
Expand Down Expand Up @@ -295,6 +302,7 @@ describe('React Navigation - TTID', () => {
data: {
'sentry.op': 'ui.load.full_display',
'sentry.origin': SPAN_ORIGIN_MANUAL_UI_TIME_TO_DISPLAY,
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
description: 'Time To Full Display',
op: 'ui.load.full_display',
Expand Down Expand Up @@ -371,6 +379,7 @@ describe('React Navigation - TTID', () => {
data: {
'sentry.op': 'ui.load.initial_display',
'sentry.origin': SPAN_ORIGIN_AUTO_UI_TIME_TO_DISPLAY,
[SPAN_THREAD_NAME]: SPAN_THREAD_NAME_JAVASCRIPT,
},
description: 'New Screen initial display',
op: 'ui.load.initial_display',
Expand Down
Loading