Skip to content
New issue

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

Upgrade jaeger and otel collector image versions #104

Merged
merged 1 commit into from
Feb 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions configs/otel-collector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,19 @@ receivers:

exporters:
logging:
logLevel: debug
loglevel: debug
jaeger:
endpoint: "jaeger:14250"
insecure: true
tls:
insecure: true

processors:
batch:

service:
pipelines:
traces:
receivers:
- otlp
processors:
- batch
exporters:
- logging
- jaeger
receivers: [otlp]
processors: [batch]
exporters: [jaeger,logging]

4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
version: '2.1'
services:
jaeger:
image: jaegertracing/all-in-one:1.22.0
image: jaegertracing/all-in-one:1.31.0
ports:
- "16686:16686"
- "14268"
- "14250"
otel-collector:
image: otel/opentelemetry-collector:0.24.0
image: otel/opentelemetry-collector:0.44.0
volumes:
- ./configs/otel-collector.yaml:/local.yaml
command: --config /local.yaml
Expand Down