Skip to content
Open
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
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
OTELCOL_IMG=otel/opentelemetry-collector:0.67.0
OTELCOL_IMG=otel/opentelemetry-collector:latest
OTELCOL_ARGS=
2 changes: 2 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ services:
restart: always
ports:
- "16686:16686"
- "16685:16685"
- "14268"
- "14250"
- "4317"

# Zipkin
zipkin-all-in-one:
Expand Down
6 changes: 3 additions & 3 deletions otel-collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ exporters:
endpoint: "http://zipkin-all-in-one:9411/api/v2/spans"
format: proto

jaeger:
endpoint: jaeger-all-in-one:14250
otlp/jaeger:
endpoint: jaeger-all-in-one:4317

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why there is a change in port? I guess they have purposefully kept it 14250 to support nextJS framework.

@stoty stoty Nov 10, 2023

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Frankly I don't know the nextJS framework.
New Jaeger versions support the OTLP protocol natively, and use that for communication with the OTEL collector, while in older version the collector used the Jaeger protocol to talk to Jaeger.

This port is not supposed to be seen or used by the observer application.

@jprokay-tb jprokay-tb Nov 30, 2023

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tls:
insecure: true

Expand All @@ -37,7 +37,7 @@ service:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging, zipkin, jaeger]
exporters: [logging, zipkin, otlp/jaeger]
metrics:
receivers: [otlp]
processors: [batch]
Expand Down