-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
feat(core)!: Pass root spans to beforeSendSpan
and disallow returning null
#14831
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
Merged
Merged
Changes from 11 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
7c3a0bb
no null return in beforeSendSpan
chargome eaa6d88
add convertTransactionEventToSpanJson
chargome af0c0c5
pass root span to beforeSendSpan
chargome 37534eb
add migration entry
chargome c1a5ea8
Merge branch 'develop' into cg/disallow-dropping-in-beforesendspan
chargome bbd3e8c
format md
chargome e5facf3
biome
chargome d625cde
apply feedback for checking undefined measurements
chargome 3de5d06
merge processed event
chargome 2295f64
biome
chargome de85def
set is_segmet to true for root spans
chargome 373734d
Merge branch 'develop' into cg/disallow-dropping-in-beforesendspan
chargome feae885
update client tests
chargome 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { SEMANTIC_ATTRIBUTE_EXCLUSIVE_TIME, SEMANTIC_ATTRIBUTE_PROFILE_ID } from '../semanticAttributes'; | ||
import type { SpanJSON, TransactionEvent } from '../types-hoist'; | ||
import { dropUndefinedKeys } from '../utils-hoist'; | ||
|
||
/** | ||
* Converts a transaction event to a span JSON object. | ||
*/ | ||
export function convertTransactionEventToSpanJson(event: TransactionEvent): SpanJSON { | ||
const { trace_id, parent_span_id, span_id, status, origin, data, op } = event.contexts?.trace ?? {}; | ||
|
||
return dropUndefinedKeys({ | ||
data: data ?? {}, | ||
description: event.transaction, | ||
op, | ||
parent_span_id, | ||
span_id: span_id ?? '', | ||
start_timestamp: event.start_timestamp ?? 0, | ||
status, | ||
timestamp: event.timestamp, | ||
trace_id: trace_id ?? '', | ||
origin, | ||
profile_id: data?.[SEMANTIC_ATTRIBUTE_PROFILE_ID] as string | undefined, | ||
exclusive_time: data?.[SEMANTIC_ATTRIBUTE_EXCLUSIVE_TIME] as number | undefined, | ||
measurements: event.measurements, | ||
is_segment: true, | ||
}); | ||
} | ||
|
||
/** | ||
* Converts a span JSON object to a transaction event. | ||
*/ | ||
export function convertSpanJsonToTransactionEvent(span: SpanJSON): TransactionEvent { | ||
const event: TransactionEvent = { | ||
type: 'transaction', | ||
timestamp: span.timestamp, | ||
start_timestamp: span.start_timestamp, | ||
transaction: span.description, | ||
contexts: { | ||
trace: { | ||
trace_id: span.trace_id, | ||
span_id: span.span_id, | ||
parent_span_id: span.parent_span_id, | ||
op: span.op, | ||
status: span.status, | ||
origin: span.origin, | ||
data: { | ||
...span.data, | ||
...(span.profile_id && { [SEMANTIC_ATTRIBUTE_PROFILE_ID]: span.profile_id }), | ||
...(span.exclusive_time && { [SEMANTIC_ATTRIBUTE_EXCLUSIVE_TIME]: span.exclusive_time }), | ||
}, | ||
}, | ||
}, | ||
measurements: span.measurements, | ||
}; | ||
|
||
return dropUndefinedKeys(event); | ||
} |
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.
l (not blocking): Is there a way we can get rid of this type cast? No worries if not, just curious since there's the
isTransactionEvent
check above 🤔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.
yeah somehow no matter what I do, after the
merge
call ts thinks it's an event again, even if I do