Skip to content

Commit 72a369b

Browse files
committed
feat(process-compose): add OTLP collector
In the telemetry overlay for suzuka-full-node, add an OTLP collector start job running a docker container.
1 parent ea57348 commit 72a369b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

process-compose/suzuka-full-node/process-compose.telemetry.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,22 @@ version: "3"
33
environment:
44

55
processes:
6+
otlp-collector:
7+
is_daemon: true
8+
command: |
9+
docker run -d --name suzuka-otlp-collector -p16686:16686 -p4317:4317 -e COLLECTOR_OTLP_ENABLED=true jaegertracing/all-in-one:latest
10+
shutdown:
11+
command: |
12+
docker stop suzuka-otlp-collector
613
suzuka-full-node:
14+
depends_on:
15+
otlp-collector:
16+
condition: process_started
717
env:
818
MOVEMENT_OTLP: http://localhost:4317
919
m1-da-light-node:
20+
depends_on:
21+
otlp-collector:
22+
condition: process_started
1023
env:
1124
MOVEMENT_OTLP: http://localhost:4317

0 commit comments

Comments
 (0)