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
According to the spec for otlp exporter environment variables, the following variable should be supported by the otlp exporter:
OTEL_EXPORTER_OTLP_INSECURE, OTEL_EXPORTER_OTLP_SPAN_INSECURE, OTEL_EXPORTER_OTLP_METRIC_INSECURE OTEL_EXPORTER_OTLP_CERTIFICATE, OTEL_EXPORTER_OTLP_TRACES_CERTIFICATE, OTEL_EXPORTER_OTLP_METRICS_CERTIFICATE OTEL_EXPORTER_OTLP_COMPRESSION, OTEL_EXPORTER_OTLP_TRACES_COMPRESSION, OTEL_EXPORTER_OTLP_METRICS_COMPRESSION OTEL_EXPORTER_OTLP_TIMEOUT, OTEL_EXPORTER_OTLP_TRACES_TIMEOUT, OTEL_EXPORTER_OTLP_METRICS_TIMEOUT
If I am not mistaken, these exporter options are not currently being read and applied.
Add the appropriate options to the 3 otlp exporters
Not sure if the optional INSECURE options are relevant in JS:
INSECURE
Implementations MAY choose to not implement the insecure option if it is not required or supported by the underlying gRPC client implementation.
The text was updated successfully, but these errors were encountered:
I'm pretty sure @grpc/grpc-js supports both secure and insecure modes.
@grpc/grpc-js
Sorry, something went wrong.
I'm interested in this issue. This relates to my retry logic issue.
svetlanabrennan
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
According to the spec for otlp exporter environment variables, the following variable should be supported by the otlp exporter:
If I am not mistaken, these exporter options are not currently being read and applied.
Describe the solution you'd like
Add the appropriate options to the 3 otlp exporters
Describe alternatives you've considered
Additional context
Not sure if the optional
INSECURE
options are relevant in JS:The text was updated successfully, but these errors were encountered: