We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: