File tree Expand file tree Collapse file tree 5 files changed +29
-5
lines changed Expand file tree Collapse file tree 5 files changed +29
-5
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,6 @@ export {
45
45
Scope ,
46
46
// eslint-disable-next-line deprecation/deprecation
47
47
startTransaction ,
48
- getActiveSpan ,
49
- startSpan ,
50
- startInactiveSpan ,
51
- startSpanManual ,
52
48
continueTrace ,
53
49
SDK_VERSION ,
54
50
setContext ,
@@ -59,7 +55,6 @@ export {
59
55
setUser ,
60
56
withScope ,
61
57
withIsolationScope ,
62
- withActiveSpan ,
63
58
functionToStringIntegration ,
64
59
inboundFiltersIntegration ,
65
60
dedupeIntegration ,
Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ Sentry.Integrations.Replay = Replay;
14
14
// We are patching the global object with our hub extension methods
15
15
addTracingExtensions ( ) ;
16
16
17
+ export {
18
+ getActiveSpan ,
19
+ startSpan ,
20
+ startInactiveSpan ,
21
+ startSpanManual ,
22
+ withActiveSpan ,
23
+ } from '@sentry/core' ;
24
+
17
25
export {
18
26
// eslint-disable-next-line deprecation/deprecation
19
27
Feedback ,
Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ Sentry.Integrations.Replay = Replay;
14
14
// We are patching the global object with our hub extension methods
15
15
addTracingExtensions ( ) ;
16
16
17
+ export {
18
+ getActiveSpan ,
19
+ startSpan ,
20
+ startInactiveSpan ,
21
+ startSpanManual ,
22
+ withActiveSpan ,
23
+ } from '@sentry/core' ;
24
+
17
25
export {
18
26
// eslint-disable-next-line deprecation/deprecation
19
27
FeedbackShim as Feedback ,
Original file line number Diff line number Diff line change @@ -19,6 +19,14 @@ Sentry.Integrations.Replay = ReplayShim;
19
19
// We are patching the global object with our hub extension methods
20
20
addTracingExtensions ( ) ;
21
21
22
+ export {
23
+ getActiveSpan ,
24
+ startSpan ,
25
+ startInactiveSpan ,
26
+ startSpanManual ,
27
+ withActiveSpan ,
28
+ } from '@sentry/core' ;
29
+
22
30
export {
23
31
// eslint-disable-next-line deprecation/deprecation
24
32
FeedbackShim as Feedback ,
Original file line number Diff line number Diff line change @@ -70,6 +70,11 @@ export {
70
70
export type { RequestInstrumentationOptions } from '@sentry-internal/tracing' ;
71
71
export {
72
72
addTracingExtensions ,
73
+ getActiveSpan ,
74
+ startSpan ,
75
+ startInactiveSpan ,
76
+ startSpanManual ,
77
+ withActiveSpan ,
73
78
setMeasurement ,
74
79
// eslint-disable-next-line deprecation/deprecation
75
80
getActiveTransaction ,
You can’t perform that action at this time.
0 commit comments