mirror of https://github.com/hyperledger/besu
An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client https://wiki.hyperledger.org/display/besu
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
805 B
30 lines
805 B
version: "3"
|
|
services:
|
|
otelcollector:
|
|
image: otel/opentelemetry-collector-contrib:0.17.0
|
|
container_name: otelcollector
|
|
command: ["--config=/etc/otel-collector-config.yml"]
|
|
volumes:
|
|
- ./otel-collector-config.yml:/etc/otel-collector-config.yml
|
|
ports:
|
|
- "1888:1888" # pprof extension
|
|
- "8888:8888" # Prometheus metrics exposed by the collector
|
|
- "8889:8889" # Prometheus exporter metrics
|
|
- "13133:13133" # health_check extension
|
|
- "4317:4317" # OTLP GRPC receiver
|
|
depends_on:
|
|
- zipkin
|
|
- metricsviewer
|
|
|
|
# Zipkin
|
|
zipkin:
|
|
image: openzipkin/zipkin
|
|
container_name: zipkin
|
|
ports:
|
|
- 9411:9411
|
|
|
|
metricsviewer:
|
|
image: docker.io/tmio/metrics-ui
|
|
container_name: metricsviewer
|
|
ports:
|
|
- 8080:8080
|
|
|