File tree Expand file tree Collapse file tree 2 files changed +2
-13
lines changed Expand file tree Collapse file tree 2 files changed +2
-13
lines changed Original file line number Diff line number Diff line change 30
30
VERSION ,
31
31
ClientConstructor ,
32
32
)
33
- from sentry_sdk .integrations import _DEFAULT_INTEGRATIONS , setup_integrations
33
+ from sentry_sdk .integrations import setup_integrations
34
34
from sentry_sdk .sessions import SessionFlusher
35
35
from sentry_sdk .envelope import Envelope
36
36
from sentry_sdk .profiler .continuous_profiler import setup_continuous_profiler
@@ -345,18 +345,6 @@ def _capture_envelope(envelope):
345
345
)
346
346
)
347
347
348
- if self .options ["_experiments" ].get ("otel_powered_performance" , False ):
349
- logger .debug (
350
- "[OTel] Enabling experimental OTel-powered performance monitoring."
351
- )
352
- if (
353
- "sentry_sdk.integrations.opentelemetry.integration.OpenTelemetryIntegration"
354
- not in _DEFAULT_INTEGRATIONS
355
- ):
356
- _DEFAULT_INTEGRATIONS .append (
357
- "sentry_sdk.integrations.opentelemetry.integration.OpenTelemetryIntegration" ,
358
- )
359
-
360
348
self .integrations = setup_integrations (
361
349
self .options ["integrations" ],
362
350
with_defaults = self .options ["default_integrations" ],
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ def iter_default_integrations(with_auto_enabling_integrations):
65
65
"sentry_sdk.integrations.excepthook.ExcepthookIntegration" ,
66
66
"sentry_sdk.integrations.logging.LoggingIntegration" ,
67
67
"sentry_sdk.integrations.modules.ModulesIntegration" ,
68
+ "sentry_sdk.integrations.opentelemetry.integration.OpenTelemetryIntegration" ,
68
69
"sentry_sdk.integrations.stdlib.StdlibIntegration" ,
69
70
"sentry_sdk.integrations.threading.ThreadingIntegration" ,
70
71
]
You can’t perform that action at this time.
0 commit comments