-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(core)!: Stream beforeSendSpan payloads by default #22643
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
Draft
Lms24
wants to merge
1
commit into
feat/span-streaming-default
from
feat/before-send-span-streamed-default
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,42 +1,63 @@ | ||
| import type { CoreOptions } from '../../types/options'; | ||
| import type { BeforeSendStreamedSpanCallback } from '../../types/options'; | ||
| import type { StreamedSpanJSON } from '../../types/span'; | ||
| import type { BeforeSendStaticSpanCallback, BeforeSendStreamedSpanCallback } from '../../types/options'; | ||
| import type { SpanJSON, StreamedSpanJSON } from '../../types/span'; | ||
| import { addNonEnumerableProperty } from '../../utils/object'; | ||
|
|
||
| type StaticBeforeSendSpanCallback = CoreOptions['beforeSendSpan']; | ||
|
|
||
| /** | ||
| * A wrapper to use the new span format in your `beforeSendSpan` callback. | ||
| * A wrapper to use the legacy transaction span format in your `beforeSendSpan` callback. | ||
| * | ||
| * When using `traceLifecycle: 'stream'`, wrap your callback with this function | ||
| * to receive and return {@link StreamedSpanJSON} instead of the standard {@link SpanJSON}. | ||
| * When using `traceLifecycle: 'static'`, wrap your callback with this function | ||
| * to receive and return {@link SpanJSON} instead of {@link StreamedSpanJSON}. | ||
| * | ||
| * @example | ||
| * | ||
| * Sentry.init({ | ||
| * traceLifecycle: 'stream', | ||
| * beforeSendSpan: withStreamedSpan((span) => { | ||
| * // span is of type StreamedSpanJSON | ||
| * traceLifecycle: 'static', | ||
| * beforeSendSpan: withStaticSpan((span) => { | ||
| * // span is of type SpanJSON | ||
| * return span; | ||
| * }), | ||
| * }); | ||
| * | ||
| * @param callback - The callback function that receives and returns a {@link SpanJSON}. | ||
| * @returns A callback that is compatible with the `beforeSendSpan` option when using `traceLifecycle: 'static'`. | ||
| */ | ||
| export function withStaticSpan(callback: (span: SpanJSON) => SpanJSON): BeforeSendStaticSpanCallback { | ||
| addNonEnumerableProperty(callback, '_static', true); | ||
| return callback as BeforeSendStaticSpanCallback; | ||
| } | ||
|
|
||
| /** | ||
| * A wrapper to explicitly use the streamed span format in your `beforeSendSpan` callback. | ||
| * | ||
| * @deprecated `beforeSendSpan` callbacks receive {@link StreamedSpanJSON} by default. | ||
| * This function will be removed in SDK version 12. | ||
| * | ||
| * @param callback - The callback function that receives and returns a {@link StreamedSpanJSON}. | ||
| * @returns A callback that is compatible with the `beforeSendSpan` option when using `traceLifecycle: 'stream'`. | ||
| * @returns The provided callback. | ||
| */ | ||
| export function withStreamedSpan( | ||
| callback: (span: StreamedSpanJSON) => StreamedSpanJSON, | ||
| ): StaticBeforeSendSpanCallback & { _streamed: true } { | ||
| ): BeforeSendStreamedSpanCallback & { _streamed: true } { | ||
| addNonEnumerableProperty(callback, '_streamed', true); | ||
| return callback as unknown as StaticBeforeSendSpanCallback & { _streamed: true }; | ||
| return callback as BeforeSendStreamedSpanCallback & { _streamed: true }; | ||
| } | ||
|
|
||
| /** | ||
| * Typesafe check to identify if a `beforeSendSpan` callback expects the static span JSON format. | ||
| * | ||
| * @param callback - The `beforeSendSpan` callback to check. | ||
| * @returns `true` if the callback was wrapped with {@link withStaticSpan}. | ||
| */ | ||
| export function isStaticBeforeSendSpanCallback(callback: unknown): callback is BeforeSendStaticSpanCallback { | ||
| return !!callback && typeof callback === 'function' && '_static' in callback && !!callback._static; | ||
| } | ||
|
|
||
| /** | ||
| * Typesafe check to identify if a `beforeSendSpan` callback expects the streamed span JSON format. | ||
| * | ||
| * @param callback - The `beforeSendSpan` callback to check. | ||
| * @returns `true` if the callback was wrapped with {@link withStreamedSpan}. | ||
| * @returns `true` unless the callback was wrapped with {@link withStaticSpan}. | ||
| */ | ||
| export function isStreamedBeforeSendSpanCallback(callback: unknown): callback is BeforeSendStreamedSpanCallback { | ||
| return !!callback && typeof callback === 'function' && '_streamed' in callback && !!callback._streamed; | ||
| return !!callback && typeof callback === 'function' && !isStaticBeforeSendSpanCallback(callback); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Static beforeSendSpan silently skipped
Medium Severity
processBeforeSendnow only invokesbeforeSendSpanwhen the callback is marked withwithStaticSpan. An unwrapped callback undertraceLifecycle: 'static'is never called, and unlike the span-streaming path there is no debug warning. Users opting back into the static model (as migration docs suggest) can silently lose span scrubbing or mutation with a config that still type-checks.Additional Locations (1)
packages/core/src/tracing/spans/beforeSendSpan.ts#L50-L52Reviewed by Cursor Bugbot for commit e303625. Configure here.