You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For insecure Otlp gRPC transport, with the .NET SDK today, I need to prepend http:// to the endpoint. Other languages use the OTEL_EXPORTER_OTLP_INSECURE env variable and you still specify the endpoint as "hostname:4317". I mostly just want to see a standard implemented consistently on this across languages.
Java/Python automatically look at the OTEL_EXPORTER_OTLP_ENDPOINT env variable to configure the Otlp endpoint. This is convenient and it would be good to follow suit on that.
Describe alternatives you've considered.
At the moment, I add a line to check the OTEL_EXPORTER_OTLP_ENDPOINT variable. I shouldn't have to do that. And I prepend the endpoint with http:// for insecure transport.
In general though, it would be ideal if the SDK implementation would honor all env variables that are used in other languages like Java and Python. The above happen to be the ones I look for first. Then we could create a single page for standard env variables that apply to all languages and not have to document it per language.
The text was updated successfully, but these errors were encountered:
On this note, Java just released 0.15.0 in which they stopped using the OTLP_INSECURE variable and are using http:// instead. So you were ahead of the curve! I see now that this really is in a state of flux. Never mind me!
Feature Request
Describe alternatives you've considered.
At the moment, I add a line to check the OTEL_EXPORTER_OTLP_ENDPOINT variable. I shouldn't have to do that. And I prepend the endpoint with http:// for insecure transport.
In general though, it would be ideal if the SDK implementation would honor all env variables that are used in other languages like Java and Python. The above happen to be the ones I look for first. Then we could create a single page for standard env variables that apply to all languages and not have to document it per language.
The text was updated successfully, but these errors were encountered: