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.
23 lines
629 B
23 lines
629 B
4 years ago
|
version: "3"
|
||
|
services:
|
||
|
otel-collector:
|
||
|
image: otel/opentelemetry-collector-contrib:0.11.0
|
||
|
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
|
||
|
- "55680:55680" # zpages extension
|
||
|
depends_on:
|
||
|
- zipkin
|
||
|
|
||
|
#Zipkin
|
||
|
zipkin:
|
||
|
image: openzipkin/zipkin
|
||
|
container_name: zipkin
|
||
|
ports:
|
||
|
- 9411:9411
|