Skip to content

Commit

Permalink
Upgrade jaeger and otel collector images: (#104)
Browse files Browse the repository at this point in the history
Lots of updates to otel collect. For my
testing most notably the status codes in jaeger
were not being parsed correctly. This resolves this.

Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
  • Loading branch information
jacobweinstock authored Feb 23, 2022
1 parent 8488238 commit 0c23988
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
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

0 comments on commit 0c23988

Please sign in to comment.