Skip to content

Commit 42c92fb

Browse files
committed
add env variables
1 parent 4a7a13d commit 42c92fb

File tree

1 file changed

+27
-0
lines changed
  • opentelemetry-sdk/src/opentelemetry/sdk/environment_variables

1 file changed

+27
-0
lines changed

opentelemetry-sdk/src/opentelemetry/sdk/environment_variables/__init__.py

+27
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,33 @@
511511
associated with gRPC or HTTP requests.
512512
"""
513513

514+
OTEL_EXPORTER_OTLP_TRACES_CHANNEL_OPTIONS = (
515+
"OTEL_EXPORTER_OTLP_TRACES_CHANNEL_OPTIONS"
516+
)
517+
"""
518+
.. envvar:: OTEL_EXPORTER_OTLP_TRACES_CHANNEL_OPTIONS
519+
520+
The :envvar:`OTEL_EXPORTER_OTLP_TRACES_CHANNEL_OPTIONS` represents the channel options for the spans exporter.
521+
"""
522+
523+
OTEL_EXPORTER_OTLP_METRICS_CHANNEL_OPTIONS = (
524+
"OTEL_EXPORTER_OTLP_METRICS_CHANNEL_OPTIONS"
525+
)
526+
"""
527+
.. envvar:: OTEL_EXPORTER_OTLP_METRICS_CHANNEL_OPTIONS
528+
529+
The :envvar:`OTEL_EXPORTER_OTLP_METRICS_CHANNEL_OPTIONS` represents the channel options for the metrics exporter.
530+
"""
531+
532+
OTEL_EXPORTER_OTLP_LOGS_CHANNEL_OPTIONS = (
533+
"OTEL_EXPORTER_OTLP_LOGS_CHANNEL_OPTIONS"
534+
)
535+
"""
536+
.. envvar:: OTEL_EXPORTER_OTLP_LOGS_CHANNEL_OPTIONS
537+
538+
The :envvar:`OTEL_EXPORTER_OTLP_LOGS_CHANNEL_OPTIONS` represents the channel options for the logs exporter.
539+
"""
540+
514541
OTEL_EXPORTER_OTLP_TRACES_COMPRESSION = "OTEL_EXPORTER_OTLP_TRACES_COMPRESSION"
515542
"""
516543
.. envvar:: OTEL_EXPORTER_OTLP_TRACES_COMPRESSION

0 commit comments

Comments
 (0)