diff --git a/sentry_sdk/integrations/opentelemetry/integration.py b/sentry_sdk/integrations/opentelemetry/integration.py index 83588a2b38..d84b7695d9 100644 --- a/sentry_sdk/integrations/opentelemetry/integration.py +++ b/sentry_sdk/integrations/opentelemetry/integration.py @@ -1,7 +1,5 @@ """ -IMPORTANT: The contents of this file are part of a proof of concept and as such -are experimental and not suitable for production use. They may be changed or -removed at any time without prior notice. +OpenTelemetry integration for Sentry. """ from sentry_sdk.integrations import DidNotEnable, Integration @@ -32,10 +30,7 @@ class OpenTelemetryIntegration(Integration): @staticmethod def setup_once() -> None: - logger.warning( - "[OTel] Initializing highly experimental OpenTelemetry support. " - "Use at your own risk." - ) + logger.debug("[OTel] Initializing OpenTelemetry support.") _setup_sentry_tracing() # _setup_instrumentors() diff --git a/sentry_sdk/traces.py b/sentry_sdk/traces.py index 944e17e5d7..a99c005ddc 100644 --- a/sentry_sdk/traces.py +++ b/sentry_sdk/traces.py @@ -1,6 +1,4 @@ """ -EXPERIMENTAL. Do not use in production. - The API in this file is only meant to be used in span streaming mode. You can enable span streaming mode via @@ -98,9 +96,6 @@ def start_span( """ Start a span. - EXPERIMENTAL. Use sentry_sdk.start_transaction() and sentry_sdk.start_span() - instead. - The span's parent, unless provided explicitly via the `parent_span` argument, will be the current active span, if any. If there is none, this span will become the root of a new span tree. If you explicitly want this span to be @@ -172,8 +167,6 @@ def continue_trace(incoming: "dict[str, Any]") -> None: """ Continue a trace from headers or environment variables. - EXPERIMENTAL. Use sentry_sdk.continue_trace() instead. - This function sets the propagation context on the scope. Any span started in the updated scope will belong under the trace extracted from the provided propagation headers or environment variables. @@ -198,8 +191,6 @@ def new_trace() -> None: """ Resets the propagation context, forcing a new trace. - EXPERIMENTAL. - This function sets the propagation context on the scope. Any span started in the updated scope will start its own trace. @@ -696,8 +687,6 @@ def trace( """ Decorator to start a span around a function call. - EXPERIMENTAL. Use @sentry_sdk.trace instead. - This decorator automatically creates a new span when the decorated function is called, and finishes the span when the function returns or raises an exception.