1
+ import { getAsyncContextStrategy } from '../asyncContext' ;
2
+ import { getMainCarrier } from '../carrier' ;
3
+ import { getCurrentScope } from '../currentScopes' ;
4
+ import { getMetricSummaryJsonForSpan , updateMetricSummaryOnSpan } from '../metrics/metric-summary' ;
5
+ import type { MetricType } from '../metrics/types' ;
6
+ import { SEMANTIC_ATTRIBUTE_SENTRY_OP , SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '../semanticAttributes' ;
7
+ import type { SentrySpan } from '../tracing/sentrySpan' ;
8
+ import { SPAN_STATUS_OK , SPAN_STATUS_UNSET } from '../tracing/spanstatus' ;
1
9
import type {
2
10
MeasurementUnit ,
3
11
Primitive ,
@@ -9,17 +17,9 @@ import type {
9
17
SpanTimeInput ,
10
18
TraceContext ,
11
19
} from '../types-hoist' ;
12
- import { getAsyncContextStrategy } from '../asyncContext' ;
13
- import { getMainCarrier } from '../carrier' ;
14
- import { getCurrentScope } from '../currentScopes' ;
15
- import { getMetricSummaryJsonForSpan , updateMetricSummaryOnSpan } from '../metrics/metric-summary' ;
16
- import type { MetricType } from '../metrics/types' ;
17
- import { SEMANTIC_ATTRIBUTE_SENTRY_OP , SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '../semanticAttributes' ;
18
- import type { SentrySpan } from '../tracing/sentrySpan' ;
19
- import { SPAN_STATUS_OK , SPAN_STATUS_UNSET } from '../tracing/spanstatus' ;
20
- import { generateSpanId } from '../utils-hoist/propagationContext' ;
21
20
import { consoleSandbox } from '../utils-hoist/logger' ;
22
21
import { addNonEnumerableProperty , dropUndefinedKeys } from '../utils-hoist/object' ;
22
+ import { generateSpanId } from '../utils-hoist/propagationContext' ;
23
23
import { timestampInSeconds } from '../utils-hoist/time' ;
24
24
import { generateSentryTraceHeader } from '../utils-hoist/tracing' ;
25
25
import { _getSpanForScope } from './spanOnScope' ;
0 commit comments