@sentry/core
Version:
Base implementation for all Sentry JavaScript SDKs
26 lines (22 loc) • 867 B
JavaScript
import { withScope, getTraceContextFromScope } from '../currentScopes.js';
import { getDynamicSamplingContextFromSpan, getDynamicSamplingContextFromScope } from '../tracing/dynamicSamplingContext.js';
import { getActiveSpan, spanToTraceContext } from './spanUtils.js';
/** Extract trace information from scope */
function _getTraceInfoFromScope(
client,
scope,
) {
if (!scope) {
return [undefined, undefined];
}
return withScope(scope, () => {
const span = getActiveSpan();
const traceContext = span ? spanToTraceContext(span) : getTraceContextFromScope(scope);
const dynamicSamplingContext = span
? getDynamicSamplingContextFromSpan(span)
: getDynamicSamplingContextFromScope(client, scope);
return [dynamicSamplingContext, traceContext];
});
}
export { _getTraceInfoFromScope };
//# sourceMappingURL=trace-info.js.map