sdk: drop unused Jaeger exporter environment variables#4922
Open
cluster2600 wants to merge 1 commit intoopen-telemetry:mainfrom
Open
sdk: drop unused Jaeger exporter environment variables#4922cluster2600 wants to merge 1 commit intoopen-telemetry:mainfrom
cluster2600 wants to merge 1 commit intoopen-telemetry:mainfrom
Conversation
The Jaeger exporter was removed in version 1.22.0/0.43b0 (2023-12-15). The OTEL_EXPORTER_JAEGER_* environment variables defined in the SDK are no longer used by any code and can be safely removed to avoid confusion. Variables removed: - OTEL_EXPORTER_JAEGER_AGENT_HOST - OTEL_EXPORTER_JAEGER_AGENT_PORT - OTEL_EXPORTER_JAEGER_ENDPOINT - OTEL_EXPORTER_JAEGER_USER - OTEL_EXPORTER_JAEGER_PASSWORD - OTEL_EXPORTER_JAEGER_TIMEOUT - OTEL_EXPORTER_JAEGER_CERTIFICATE - OTEL_EXPORTER_JAEGER_AGENT_SPLIT_OVERSIZED_BATCHES - OTEL_EXPORTER_JAEGER_GRPC_INSECURE Fixes open-telemetry#4918
|
|
xrmx
approved these changes
Feb 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The Jaeger exporter was removed in version 1.22.0/0.43b0 (2023-12-15). However, the
OTEL_EXPORTER_JAEGER_*environment variables defined inopentelemetry-sdkwere left behind. These variables are no longer referenced by any code and can be safely removed to avoid confusion.Fixes #4918
Changes
Removed the following unused environment variables from
opentelemetry-sdk/src/opentelemetry/sdk/environment_variables/__init__.py:OTEL_EXPORTER_JAEGER_AGENT_HOSTOTEL_EXPORTER_JAEGER_AGENT_PORTOTEL_EXPORTER_JAEGER_ENDPOINTOTEL_EXPORTER_JAEGER_USEROTEL_EXPORTER_JAEGER_PASSWORDOTEL_EXPORTER_JAEGER_TIMEOUTOTEL_EXPORTER_JAEGER_CERTIFICATEOTEL_EXPORTER_JAEGER_AGENT_SPLIT_OVERSIZED_BATCHESOTEL_EXPORTER_JAEGER_GRPC_INSECURETesting
No functional change — only removing dead constants that have no callers anywhere in the codebase.