123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- Object.defineProperty(exports, '__esModule', { value: true });
- const utils = require('@sentry/utils');
- // These are aligned with OpenTelemetry trace flags
- const TRACE_FLAG_NONE = 0x0;
- const TRACE_FLAG_SAMPLED = 0x1;
- /**
- * Convert a span to a trace context, which can be sent as the `trace` context in an event.
- */
- function spanToTraceContext(span) {
- const { spanId: span_id, traceId: trace_id } = span.spanContext();
- const { data, op, parent_span_id, status, tags, origin } = spanToJSON(span);
- return utils.dropUndefinedKeys({
- data,
- op,
- parent_span_id,
- span_id,
- status,
- tags,
- trace_id,
- origin,
- });
- }
- /**
- * Convert a Span to a Sentry trace header.
- */
- function spanToTraceHeader(span) {
- const { traceId, spanId } = span.spanContext();
- const sampled = spanIsSampled(span);
- return utils.generateSentryTraceHeader(traceId, spanId, sampled);
- }
- /**
- * Convert a span time input intp a timestamp in seconds.
- */
- function spanTimeInputToSeconds(input) {
- if (typeof input === 'number') {
- return ensureTimestampInSeconds(input);
- }
- if (Array.isArray(input)) {
- // See {@link HrTime} for the array-based time format
- return input[0] + input[1] / 1e9;
- }
- if (input instanceof Date) {
- return ensureTimestampInSeconds(input.getTime());
- }
- return utils.timestampInSeconds();
- }
- /**
- * Converts a timestamp to second, if it was in milliseconds, or keeps it as second.
- */
- function ensureTimestampInSeconds(timestamp) {
- const isMs = timestamp > 9999999999;
- return isMs ? timestamp / 1000 : timestamp;
- }
- /**
- * Convert a span to a JSON representation.
- * Note that all fields returned here are optional and need to be guarded against.
- *
- * Note: Because of this, we currently have a circular type dependency (which we opted out of in package.json).
- * This is not avoidable as we need `spanToJSON` in `spanUtils.ts`, which in turn is needed by `span.ts` for backwards compatibility.
- * And `spanToJSON` needs the Span class from `span.ts` to check here.
- * TODO v8: When we remove the deprecated stuff from `span.ts`, we can remove the circular dependency again.
- */
- function spanToJSON(span) {
- if (spanIsSpanClass(span)) {
- return span.getSpanJSON();
- }
- // Fallback: We also check for `.toJSON()` here...
- // eslint-disable-next-line deprecation/deprecation
- if (typeof span.toJSON === 'function') {
- // eslint-disable-next-line deprecation/deprecation
- return span.toJSON();
- }
- return {};
- }
- /**
- * Sadly, due to circular dependency checks we cannot actually import the Span class here and check for instanceof.
- * :( So instead we approximate this by checking if it has the `getSpanJSON` method.
- */
- function spanIsSpanClass(span) {
- return typeof (span ).getSpanJSON === 'function';
- }
- /**
- * Returns true if a span is sampled.
- * In most cases, you should just use `span.isRecording()` instead.
- * However, this has a slightly different semantic, as it also returns false if the span is finished.
- * So in the case where this distinction is important, use this method.
- */
- function spanIsSampled(span) {
- // We align our trace flags with the ones OpenTelemetry use
- // So we also check for sampled the same way they do.
- const { traceFlags } = span.spanContext();
- // eslint-disable-next-line no-bitwise
- return Boolean(traceFlags & TRACE_FLAG_SAMPLED);
- }
- exports.TRACE_FLAG_NONE = TRACE_FLAG_NONE;
- exports.TRACE_FLAG_SAMPLED = TRACE_FLAG_SAMPLED;
- exports.spanIsSampled = spanIsSampled;
- exports.spanTimeInputToSeconds = spanTimeInputToSeconds;
- exports.spanToJSON = spanToJSON;
- exports.spanToTraceContext = spanToTraceContext;
- exports.spanToTraceHeader = spanToTraceHeader;
- //# sourceMappingURL=spanUtils.js.map
|