-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.observability.yml
More file actions
46 lines (41 loc) · 1.34 KB
/
docker-compose.observability.yml
File metadata and controls
46 lines (41 loc) · 1.34 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
version: "3.9"
services:
prometheus:
image: prom/prometheus:v2.54.1
container_name: knowledgeops-agent-prometheus
volumes:
- ./observability/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
- ./observability/prometheus/alerts.yml:/etc/prometheus/alerts.yml:ro
ports:
- "9090:9090"
alertmanager:
image: prom/alertmanager:v0.27.0
container_name: knowledgeops-agent-alertmanager
volumes:
- ./observability/alertmanager/alertmanager.yml:/etc/alertmanager/alertmanager.yml:ro
ports:
- "9093:9093"
loki:
image: grafana/loki:3.1.1
container_name: knowledgeops-agent-loki
command: -config.file=/etc/loki/loki-config.yml
volumes:
- ./observability/loki/loki-config.yml:/etc/loki/loki-config.yml:ro
ports:
- "3100:3100"
tempo:
image: grafana/tempo:2.6.1
container_name: knowledgeops-agent-tempo
command: ["-config.file=/etc/tempo/tempo.yml"]
volumes:
- ./observability/tempo/tempo.yml:/etc/tempo/tempo.yml:ro
ports:
- "3200:3200"
- "4318:4318"
promtail:
image: grafana/promtail:3.1.1
container_name: knowledgeops-agent-promtail
command: -config.file=/etc/promtail/promtail.yml
volumes:
- ./observability/promtail/promtail.yml:/etc/promtail/promtail.yml:ro
- ./logs:/var/log/knowledgeops-agent:ro