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 @@ -69,6 +69,10 @@ export {
69
69
continueTrace ,
70
70
cron ,
71
71
parameterize ,
72
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
73
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
74
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
75
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
72
76
} from '@sentry/node' ;
73
77
74
78
// We can still leave this for the carrier init and type exports
Original file line number Diff line number Diff line change @@ -69,6 +69,13 @@ export {
69
69
parameterize ,
70
70
} from '@sentry/core' ;
71
71
72
+ export {
73
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
74
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
75
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
76
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
77
+ } from '@sentry/core' ;
78
+
72
79
export { WINDOW } from './helpers' ;
73
80
export { BrowserClient } from './client' ;
74
81
export { makeFetchTransport , makeXHRTransport } from './transports' ;
Original file line number Diff line number Diff line change @@ -101,6 +101,10 @@ export {
101
101
onUncaughtExceptionIntegration ,
102
102
onUnhandledRejectionIntegration ,
103
103
spotlightIntegration ,
104
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
105
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
106
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
107
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
104
108
} from '@sentry/node' ;
105
109
106
110
export { BunClient } from './client' ;
Original file line number Diff line number Diff line change @@ -73,7 +73,12 @@ export {
73
73
linkedErrorsIntegration ,
74
74
functionToStringIntegration ,
75
75
requestDataIntegration ,
76
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
77
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
78
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
79
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
76
80
} from '@sentry/core' ;
81
+
77
82
export type { SpanStatusType } from '@sentry/core' ;
78
83
79
84
export { DenoClient } from './client' ;
Original file line number Diff line number Diff line change @@ -84,6 +84,10 @@ export {
84
84
functionToStringIntegration ,
85
85
inboundFiltersIntegration ,
86
86
linkedErrorsIntegration ,
87
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
88
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
89
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
90
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
87
91
} from '@sentry/node' ;
88
92
89
93
export type {
Original file line number Diff line number Diff line change @@ -76,7 +76,16 @@ export {
76
76
linkedErrorsIntegration ,
77
77
requestDataIntegration ,
78
78
} from '@sentry/core' ;
79
+
80
+ export {
81
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
82
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
83
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
84
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
85
+ } from '@sentry/core' ;
86
+
79
87
export type { SpanStatusType } from '@sentry/core' ;
88
+
80
89
export { autoDiscoverNodePerformanceMonitoringIntegrations } from './tracing' ;
81
90
82
91
export { NodeClient } from './client' ;
Original file line number Diff line number Diff line change @@ -90,6 +90,10 @@ export {
90
90
createGetModuleFromFilename ,
91
91
hapiErrorPlugin ,
92
92
runWithAsyncContext ,
93
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
94
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
95
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
96
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
93
97
} from '@sentry/node' ;
94
98
95
99
// Keeping the `*` exports for backwards compatibility and types
Original file line number Diff line number Diff line change @@ -95,4 +95,8 @@ export {
95
95
httpIntegration ,
96
96
nativeNodeFetchintegration ,
97
97
spotlightIntegration ,
98
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
99
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
100
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
101
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
98
102
} from '@sentry/node' ;
Original file line number Diff line number Diff line change @@ -83,6 +83,10 @@ export {
83
83
hapiErrorPlugin ,
84
84
metrics ,
85
85
runWithAsyncContext ,
86
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
87
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
88
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
89
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
86
90
} from '@sentry/node' ;
87
91
88
92
// We can still leave this for the carrier init and type exports
Original file line number Diff line number Diff line change @@ -74,6 +74,10 @@ export {
74
74
inboundFiltersIntegration ,
75
75
linkedErrorsIntegration ,
76
76
requestDataIntegration ,
77
+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
78
+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
79
+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
80
+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
77
81
} from '@sentry/core' ;
78
82
export type { SpanStatusType } from '@sentry/core' ;
79
83
You can’t perform that action at this time.
0 commit comments