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
Describe the bug I use the following example to send trace messages to opentelemetry collector server.(https://github.com/open-telemetry/opentelemetry-go/tree/master/example/otel-collector)
Steps to reproduce https://github.com/open-telemetry/opentelemetry-go/tree/master/example/otel-collector
Follow the above document to configure and run the program.
What did you expect to see?
What did you see instead? no error message
What version did you use? version: v0.4.0 docker image I used is otel/opentelemetry-collector-contrib:0.4.0
What config did you use?
receivers: # Make sure to add the otlp receiver. # This will open up the receiver on port 55680 otlp: endpoint: 0.0.0.0:55680 processors: batch: queued_retry: extensions: health_check: {} exporters: jaeger: endpoint: "jaeger:14250" insecure: true otlp: endpoint: "otel-collector:55679" insecure: true logging: loglevel: debug logging: loglevel: debug service: extensions: [health_check] pipelines: traces: receivers: [otlp] processors: [batch, queued_retry] exporters: [logging, otlp]
Environment OS: macos 10.15.4
Additional context
docker image opentelemetry-collector v0.3.0 works fine. and no error messages are print under v0.4.0.
opentelemetry-collector v0.3.0
Hi, @MrAlias any idea?
The text was updated successfully, but these errors were encountered:
@gunsluo Note that OpenTelemetry Collector has just released v0.5.0 (see https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.5.0), which includes breaking changes after updating to OTLP v0.4.0 - Go SDK has already been updated to it:
v0.5.0
opentelemetry-go/exporters/otlp/go.mod
Line 10 in f1e3536
So latest releases of Go SDK and Collector should have OTLP compatibility again.
Sorry, something went wrong.
@gunsluo I'm going to close based on what @nilebox pointed out. If you upgrade and still have issues, please reopen.
No branches or pull requests
Describe the bug
I use the following example to send trace messages to opentelemetry collector server.(https://github.com/open-telemetry/opentelemetry-go/tree/master/example/otel-collector)
Steps to reproduce
https://github.com/open-telemetry/opentelemetry-go/tree/master/example/otel-collector
Follow the above document to configure and run the program.
What did you expect to see?
What did you see instead?
no error message
What version did you use?
version: v0.4.0
docker image I used is otel/opentelemetry-collector-contrib:0.4.0
What config did you use?
Environment
OS: macos 10.15.4
Additional context
docker image
opentelemetry-collector v0.3.0
works fine. and no error messages are print under v0.4.0.Hi, @MrAlias
any idea?
The text was updated successfully, but these errors were encountered: