diff --git a/opentelemetry-distro/src/opentelemetry/distro/__init__.py b/opentelemetry-distro/src/opentelemetry/distro/__init__.py index 6f6e5e7237..e38271bd52 100644 --- a/opentelemetry-distro/src/opentelemetry/distro/__init__.py +++ b/opentelemetry-distro/src/opentelemetry/distro/__init__.py @@ -41,14 +41,5 @@ def _configure(self, **kwargs): # Since the distro sets these env vars, these params are not necesary. # However they could replace these env var defaults. # Otherwise, they just serve as an example. - configuration_kwargs = { - # Could be trace_exporters or span_exporters - "span_exporter_names": ("otlp"), - "metric_exporter_names": ("otlp"), - "log_exporter_names": ("otlp"), - "sampler_name": None, - # Could be attribute dict or Resource object - "resource_attributes": {}, - # Could be string or bool - "logging_enabled": False, - } + configuration_kwargs = {} + return configuration_kwargs