OTEL_EXPORTER_JAEGER_ENDPOINT sdk env option has wrong default value #1871
Labels
area:sdk
Related to the SDK
spec:miscellaneous
For issues that don't match any other spec label
spec:trace
Related to the specification/trace directory
According to the spec, the default value for OTEL_EXPORTER_JAEGER_ENDPOINT should be
http://localhost:14250
.According to Jaeger website, port 14250 is used to send spans in
model.proto
format, where port 14268 "accept jaeger.thrift directly from clients".In GO sdk, the default value is different from the specification: "http://localhost:14268/api/traces".
This PR changed it and explains why the value in the spec is not correct.
JS sdk is also mentioning the 14268 endpoint here instead of the default 14250.
I suspect that the value should change in spec from
http://localhost:14250
tohttp://localhost:14268/api/traces
The text was updated successfully, but these errors were encountered: