File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
opentelemetry-distro/src/opentelemetry/distro Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
14
14
### Added
15
15
16
+ - ` opentelemetry-distro ` default to OTLP log exporter.
17
+ ([ #3042 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3042 ) )
16
18
- ` opentelemetry-instrumentation-sqlalchemy ` Update unit tests to run with SQLALchemy 2
17
19
([ #2976 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2976 ) )
18
20
- Add ` opentelemetry-instrumentation-openai-v2 ` to ` opentelemetry-bootstrap `
Original file line number Diff line number Diff line change 15
15
import os
16
16
17
17
from opentelemetry .environment_variables import (
18
+ OTEL_LOGS_EXPORTER ,
18
19
OTEL_METRICS_EXPORTER ,
19
20
OTEL_TRACES_EXPORTER ,
20
21
)
@@ -37,4 +38,5 @@ class OpenTelemetryDistro(BaseDistro):
37
38
def _configure (self , ** kwargs ):
38
39
os .environ .setdefault (OTEL_TRACES_EXPORTER , "otlp" )
39
40
os .environ .setdefault (OTEL_METRICS_EXPORTER , "otlp" )
41
+ os .environ .setdefault (OTEL_LOGS_EXPORTER , "otlp" )
40
42
os .environ .setdefault (OTEL_EXPORTER_OTLP_PROTOCOL , "grpc" )
You can’t perform that action at this time.
0 commit comments