Skip to content

Commit

Permalink
Remove jaeger_thrift in docker-compose example (#7243)
Browse files Browse the repository at this point in the history
* Remove jaeger_thrift in docker-compose example

* Update changelog

Co-authored-by: Alex Boten <[email protected]>
  • Loading branch information
sincejune and Alex Boten committed Jan 18, 2022
1 parent 02d67ac commit 6654ba7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- `mongodbreceiver`: Add metric metadata (#7163)
- `postgresqlreceiver`: add the receiver to available components (#7079)
- `tanzuobservability exporter`: Support summary metrics (#7121)
- Use Jaeger gRPC instead of Thrift in the docker-compose example (#7243)

## 🛑 Breaking changes 🛑

Expand Down
1 change: 0 additions & 1 deletion examples/tracing/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ services:
image: jaegertracing/all-in-one:latest
ports:
- "16686:16686"
- "14268"
- "14250"

#Zipkin
Expand Down
8 changes: 5 additions & 3 deletions examples/tracing/otel-collector-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ receivers:
zipkin:

exporters:
jaeger_thrift:
endpoint: "http:https://jaeger:14268/api/traces"
jaeger:
endpoint: jaeger:14250
tls:
insecure: true
logging:
zipkin:
endpoint: "http:https://zipkin:9411/api/v2/spans"
Expand All @@ -24,5 +26,5 @@ service:
pipelines:
traces:
receivers: [otlp, zipkin]
exporters: [zipkin, jaeger_thrift, logging]
exporters: [zipkin, jaeger, logging]
processors: [batch]

0 comments on commit 6654ba7

Please sign in to comment.