Update compose.yaml
This commit is contained in:
parent
a6774daddb
commit
a18de85475
|
|
@ -1,17 +1,16 @@
|
||||||
version: '2'
|
version: "2"
|
||||||
services:
|
services:
|
||||||
otel-collector:
|
otel-collector:
|
||||||
read_only: true
|
read_only: true
|
||||||
image: otel/opentelemetry-collector-contrib
|
image: otel/opentelemetry-collector-contrib
|
||||||
command:
|
command: ["--config=/etc/otelcol-contrib/config.yaml", "--feature-gates=-exporter.datadogexporter.DisableAPMStats", "${OTELCOL_ARGS}"]
|
||||||
['--config=/etc/otelcol-contrib/config.yaml', '--feature-gates=-exporter.datadogexporter.DisableAPMStats', '${OTELCOL_ARGS}']
|
volumes:
|
||||||
volumes:
|
- ./otel.config.yml:/etc/otelcol-contrib/config.yaml
|
||||||
- ./otel.config.yml:/etc/otelcol-contrib/config.yaml
|
ports:
|
||||||
ports:
|
- 1888:1888 # pprof extension
|
||||||
- 1888:1888 # pprof extension
|
- 8888:8888 # Prometheus metrics exposed by the Collector
|
||||||
- 8888:8888 # Prometheus metrics exposed by the Collector
|
- 8889:8889 # Prometheus exporter metrics
|
||||||
- 8889:8889 # Prometheus exporter metrics
|
- 13133:13133 # health_check extension
|
||||||
- 13133:13133 # health_check extension
|
- 4317:4317 # OTLP gRPC receiver
|
||||||
- 4317:4317 # OTLP gRPC receiver
|
- 4318:4318 # OTLP http receiver
|
||||||
- 4318:4318 # OTLP http receiver
|
- 55679:55679 # zpages extension
|
||||||
- 55679:55679 # zpages extension
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue