-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): Add
getTraceData
function (#13134)
Add a `getTraceData` function to the `@sentry/core` package and re-exports it in none-browser SDKs inheriting from it. --------- Co-authored-by: Andrei <[email protected]>
- Loading branch information
1 parent
2b7fa21
commit 7e1a641
Showing
16 changed files
with
167 additions
and
129 deletions.
There are no files selected for viewing
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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 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 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 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 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 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 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 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,89 @@ | ||
import type { Client, Scope, Span } from '@sentry/types'; | ||
import { | ||
TRACEPARENT_REGEXP, | ||
dynamicSamplingContextToSentryBaggageHeader, | ||
generateSentryTraceHeader, | ||
logger, | ||
} from '@sentry/utils'; | ||
import { getClient, getCurrentScope } from '../currentScopes'; | ||
import { getDynamicSamplingContextFromClient, getDynamicSamplingContextFromSpan } from '../tracing'; | ||
import { getActiveSpan, getRootSpan, spanToTraceHeader } from './spanUtils'; | ||
|
||
type TraceData = { | ||
'sentry-trace'?: string; | ||
baggage?: string; | ||
}; | ||
|
||
/** | ||
* Extracts trace propagation data from the current span or from the client's scope (via transaction or propagation | ||
* context) and serializes it to `sentry-trace` and `baggage` values to strings. These values can be used to propagate | ||
* a trace via our tracing Http headers or Html `<meta>` tags. | ||
* | ||
* This function also applies some validation to the generated sentry-trace and baggage values to ensure that | ||
* only valid strings are returned. | ||
* | ||
* @param span a span to take the trace data from. By default, the currently active span is used. | ||
* @param scope the scope to take trace data from By default, the active current scope is used. | ||
* @param client the SDK's client to take trace data from. By default, the current client is used. | ||
* | ||
* @returns an object with the tracing data values. The object keys are the name of the tracing key to be used as header | ||
* or meta tag name. | ||
*/ | ||
export function getTraceData(span?: Span, scope?: Scope, client?: Client): TraceData { | ||
const clientToUse = client || getClient(); | ||
const scopeToUse = scope || getCurrentScope(); | ||
const spanToUse = span || getActiveSpan(); | ||
|
||
const { dsc, sampled, traceId } = scopeToUse.getPropagationContext(); | ||
const rootSpan = spanToUse && getRootSpan(spanToUse); | ||
|
||
const sentryTrace = spanToUse ? spanToTraceHeader(spanToUse) : generateSentryTraceHeader(traceId, undefined, sampled); | ||
|
||
const dynamicSamplingContext = rootSpan | ||
? getDynamicSamplingContextFromSpan(rootSpan) | ||
: dsc | ||
? dsc | ||
: clientToUse | ||
? getDynamicSamplingContextFromClient(traceId, clientToUse) | ||
: undefined; | ||
|
||
const baggage = dynamicSamplingContextToSentryBaggageHeader(dynamicSamplingContext); | ||
|
||
const isValidSentryTraceHeader = TRACEPARENT_REGEXP.test(sentryTrace); | ||
if (!isValidSentryTraceHeader) { | ||
logger.warn('Invalid sentry-trace data. Cannot generate trace data'); | ||
return {}; | ||
} | ||
|
||
const validBaggage = isValidBaggageString(baggage); | ||
if (!validBaggage) { | ||
logger.warn('Invalid baggage data. Not returning "baggage" value'); | ||
} | ||
|
||
return { | ||
'sentry-trace': sentryTrace, | ||
...(validBaggage && { baggage }), | ||
}; | ||
} | ||
|
||
/** | ||
* Tests string against baggage spec as defined in: | ||
* | ||
* - W3C Baggage grammar: https://www.w3.org/TR/baggage/#definition | ||
* - RFC7230 token definition: https://datatracker.ietf.org/doc/html/rfc7230#section-3.2.6 | ||
* | ||
* exported for testing | ||
*/ | ||
export function isValidBaggageString(baggage?: string): boolean { | ||
if (!baggage || !baggage.length) { | ||
return false; | ||
} | ||
const keyRegex = "[-!#$%&'*+.^_`|~A-Za-z0-9]+"; | ||
const valueRegex = '[!#-+-./0-9:<=>?@A-Z\\[\\]a-z{-}]+'; | ||
const spaces = '\\s*'; | ||
// eslint-disable-next-line @sentry-internal/sdk/no-regexp-constructor -- RegExp for readability, no user input | ||
const baggageRegex = new RegExp( | ||
`^${keyRegex}${spaces}=${spaces}${valueRegex}(${spaces},${spaces}${keyRegex}${spaces}=${spaces}${valueRegex})*$`, | ||
); | ||
return baggageRegex.test(baggage); | ||
} |
Oops, something went wrong.