Open dhiaayachi opened 2 months ago
Hello :)
Sending trace to a jaeger instance by specifying OTEL* env variables as it's said in the docs.
OTEL*
$ docker inspect temporal-server | grep OTEL "OTEL_EXPORTER_OTLP_INSECURE=true", "OTEL_LOG_LEVEL=debug", "OTEL_TRACES_EXPORTER=otlp", "OTEL_EXPORTER_OTLP_TRACES_PROTOCOL=grpc", "OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=jaeger:4317", "OTEL_EXPORTER_OTLP_TRACES_INSECURE=true",
OTEL_* env variables aren't taken into account.
OTEL_*
The only way I managed to make this work is to use this config:
otel: exporters: - kind: signal: traces model: otlp protocol: grpc spec: connection: insecure: true endpoint: jaeger:4317
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT: "jaeger:4317" OTEL_EXPORTER_OTLP_TRACES_PROTOCOL: grpc OTEL_EXPORTER_OTLP_TRACES_INSECURE: "true" OTEL_EXPORTER_OTLP_INSECURE: "true" OTEL_EXPORTER_OTLP_SPAN_INSECURE: "true"
Expected Behavior
Hello :)
Sending trace to a jaeger instance by specifying
OTEL*
env variables as it's said in the docs.Actual Behavior
OTEL_*
env variables aren't taken into account.The only way I managed to make this work is to use this config:
Steps to Reproduce the Problem
Specifications