Skip to content

Commit 3b59e88

Browse files
committed
disable otel-collector for now
1 parent d5f49ea commit 3b59e88

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

docker-compose.yml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,25 @@ services:
3939
- ES_SERVER_URLS=http://elasticsearch:9200
4040
- LOG_LEVEL=debug
4141
ports:
42-
- "16686:16686"
42+
- "16686:16686" # to access the Jaeger UI
4343
- "4317:4317"
4444
- "4318:4318"
4545
- "5778:5778"
4646
- "9411:9411"
4747
depends_on:
4848
- elasticsearch
4949
restart: unless-stopped
50-
otel-collector:
51-
image: otel/opentelemetry-collector-contrib:latest
52-
container_name: otel-collector
53-
# volumes:
54-
# - ./otel-collector-config.yaml:/etc/otelcol-contrib/config.yaml
55-
ports:
56-
- 1888:1888 # pprof extension
57-
- 8888:8888 # Prometheus metrics exposed by the Collector
58-
- 8889:8889 # Prometheus exporter metrics
59-
- 13133:13133 # health_check extension
60-
- 4317:4317 # OTLP gRPC receiver
61-
- 4318:4318 # OTLP http receiver
62-
- 55679:55679 # zpages extension
50+
# FIXME: disable for now since its port conflicts with jaeger
51+
# otel-collector:
52+
# image: otel/opentelemetry-collector-contrib:latest
53+
# container_name: otel-collector
54+
# volumes:
55+
# - ./otel-collector-config.yaml:/etc/otelcol-contrib/config.yaml
56+
# ports:
57+
# - 1888:1888 # pprof extension
58+
# - 8888:8888 # Prometheus metrics exposed by the Collector
59+
# - 8889:8889 # Prometheus exporter metrics
60+
# - 13133:13133 # health_check extension
61+
# - 4317:4317 # OTLP gRPC receiver
62+
# - 4318:4318 # OTLP http receiver
63+
# - 55679:55679 # zpages extension

docs/references.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,4 @@
4949
- [OpenTelemetry Collector](https://opentelemetry.io//docs/collector/)
5050
- [Jaeger](https://www.jaegertracing.io/)
5151
- [Jaeger / Minimal deployment example (Elasticsearch backend)](https://www.jaegertracing.io/docs/1.72/deployment/#minimal-deployment-example-elasticsearch-backend)
52+
- [OpenTelemetry Collector / Quick Start](https://opentelemetry.io/docs/collector/quick-start/)

0 commit comments

Comments
 (0)