-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathdocker-compose-observability.yaml
More file actions
47 lines (43 loc) · 1.03 KB
/
docker-compose-observability.yaml
File metadata and controls
47 lines (43 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
services:
otel-collector:
container_name: otel-collector
image: otel/opentelemetry-collector:0.88.0
restart: always
command: ["--config=/etc/otel-collector-config.yaml"]
volumes:
- ${OPENTELEMETRY_CONFIG_FILE}:/etc/otel-collector-config.yaml
jaeger:
image: jaegertracing/all-in-one:1.52
container_name: jaeger
command:
- "--config-file=/etc/jaeger.yaml"
environment:
- SPAN_STORAGE_TYPE=cassandra
deploy:
resources:
limits:
memory: 300M
restart: always
ports:
- "16686:16686"
- "4317"
- "4318"
expose:
- "4318"
- "4317"
volumes:
- ${JAEGER_CONFIG_FILE}:/etc/jaeger.yaml
depends_on:
- cassandra-schema
cassandra:
image: cassandra:4.0
container_name: cassandra
volumes:
- ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/cassandra:/var/lib/cassandra
cassandra-schema:
image: jaegertracing/jaeger-cassandra-schema
depends_on:
- cassandra
networks:
default:
name: nvidia-llm