File tree Expand file tree Collapse file tree 10 files changed +49
-0
lines changed Expand file tree Collapse file tree 10 files changed +49
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,10 @@ export {
93
93
continueTrace ,
94
94
cron ,
95
95
parameterize ,
96
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
97
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
98
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
99
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
96
100
} from '@sentry/node' ;
97
101
98
102
// We can still leave this for the carrier init and type exports
Original file line number Diff line number Diff line change @@ -76,6 +76,13 @@ export {
76
76
parameterize ,
77
77
} from '@sentry/core' ;
78
78
79
+ export {
80
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
81
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
82
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
83
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
84
+ } from '@sentry/core' ;
85
+
79
86
export { WINDOW } from './helpers' ;
80
87
export { BrowserClient } from './client' ;
81
88
export { makeFetchTransport , makeXHRTransport } from './transports' ;
Original file line number Diff line number Diff line change @@ -117,6 +117,10 @@ export {
117
117
onUncaughtExceptionIntegration ,
118
118
onUnhandledRejectionIntegration ,
119
119
spotlightIntegration ,
120
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
121
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
122
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
123
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
120
124
} from '@sentry/node' ;
121
125
122
126
export { BunClient } from './client' ;
Original file line number Diff line number Diff line change @@ -85,7 +85,12 @@ export {
85
85
linkedErrorsIntegration ,
86
86
functionToStringIntegration ,
87
87
requestDataIntegration ,
88
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
89
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
90
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
91
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
88
92
} from '@sentry/core' ;
93
+
89
94
export type { SpanStatusType } from '@sentry/core' ;
90
95
91
96
export { DenoClient } from './client' ;
Original file line number Diff line number Diff line change @@ -98,6 +98,10 @@ export {
98
98
functionToStringIntegration ,
99
99
inboundFiltersIntegration ,
100
100
linkedErrorsIntegration ,
101
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
102
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
103
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
104
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
101
105
} from '@sentry/node' ;
102
106
103
107
export type {
Original file line number Diff line number Diff line change @@ -90,7 +90,16 @@ export {
90
90
linkedErrorsIntegration ,
91
91
requestDataIntegration ,
92
92
} from '@sentry/core' ;
93
+
94
+ export {
95
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
96
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
97
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
98
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
99
+ } from '@sentry/core' ;
100
+
93
101
export type { SpanStatusType } from '@sentry/core' ;
102
+
94
103
export { autoDiscoverNodePerformanceMonitoringIntegrations } from './tracing' ;
95
104
96
105
export { NodeClient } from './client' ;
Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ export {
104
104
runWithAsyncContext ,
105
105
// eslint-disable-next-line deprecation/deprecation
106
106
enableAnrDetection ,
107
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
108
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
109
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
110
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
107
111
} from '@sentry/node' ;
108
112
109
113
// Keeping the `*` exports for backwards compatibility and types
Original file line number Diff line number Diff line change @@ -107,4 +107,8 @@ export {
107
107
httpIntegration ,
108
108
nativeNodeFetchintegration ,
109
109
spotlightIntegration ,
110
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
111
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
112
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
113
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
110
114
} from '@sentry/node' ;
Original file line number Diff line number Diff line change @@ -99,6 +99,10 @@ export {
99
99
runWithAsyncContext ,
100
100
// eslint-disable-next-line deprecation/deprecation
101
101
enableAnrDetection ,
102
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
103
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
104
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
105
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
102
106
} from '@sentry/node' ;
103
107
104
108
// We can still leave this for the carrier init and type exports
Original file line number Diff line number Diff line change @@ -86,6 +86,10 @@ export {
86
86
inboundFiltersIntegration ,
87
87
linkedErrorsIntegration ,
88
88
requestDataIntegration ,
89
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
90
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
91
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
92
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
89
93
} from '@sentry/core' ;
90
94
export type { SpanStatusType } from '@sentry/core' ;
91
95
You can’t perform that action at this time.
0 commit comments