-
Notifications
You must be signed in to change notification settings - Fork 142
/
docker-compose.yml
150 lines (139 loc) · 4.19 KB
/
docker-compose.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
version: "3.8"
services:
mongodb:
image: mongo
container_name: mongodb
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=pass12345
ports:
- 27017:27017
healthcheck:
test: echo 'db.stats().ok' | mongo localhost:27017/test --quiet
interval: 10s
timeout: 10s
retries: 10
restart: unless-stopped
loki:
image: grafana/loki:2.2.0
command: -config.file=/etc/loki/loki-local.yaml
user: "0"
ports:
- "3101:3100" # loki needs to be exposed so it receives logs
environment:
- JAEGER_AGENT_HOST=tempo
- JAEGER_ENDPOINT=http://tempo:14268/api/traces # send traces to Tempo
- JAEGER_SAMPLER_TYPE=const
- JAEGER_SAMPLER_PARAM=1
volumes:
- ./etc/loki-local.yaml:/etc/loki/loki-local.yaml
- ./data/loki-data:/tmp/loki
tempo:
image: grafana/tempo:0.7.0
command: ["-config.file=/etc/tempo.yaml"]
volumes:
- ./etc/tempo-local.yaml:/etc/tempo.yaml
- ./data/tempo-data:/tmp/tempo
restart: unless-stopped
ports:
- "14268:14268" # jaeger ingest, Jaeger - Thrift HTTP
- "14250:14250" # Jaeger - GRPC
- "55680:55680" # OpenTelemetry
- "3102:3100" # tempo
tempo-query:
image: grafana/tempo-query:0.7.0
command: ["--grpc-storage-plugin.configuration-file=/etc/tempo-query.yaml"]
volumes:
- ./etc/tempo-query.yaml:/etc/tempo-query.yaml
ports:
- "16686:16686" # jaeger-ui
depends_on:
- tempo
primary:
image: diffy/example-service:production
secondary:
image: diffy/example-service:production
candidate:
image: diffy/example-service:candidate
diffy:
image: diffy/diffy:latest
ports:
- "8888:8888"
- "8880:8880"
# env_file: "./diffy.env"
environment:
spring.data.mongodb.authentication-database: admin
spring.data.mongodb.host: "mongodb"
spring.data.mongodb.port: 27017
spring.data.mongodb.username: root
spring.data.mongodb.password: pass12345
candidate: "candidate:5000"
master.primary: "primary:5000"
master.secondary: "secondary:5000"
responseMode: "primary"
service.protocol: "http"
allowHttpSideEffects: "true"
serviceName: "Sample Service"
proxy.port: 8880
http.port: 8888
rootUrl: "localhost:8888"
otel.javaagent.debug: "false"
otel.metrics.exporter: "none"
otel.traces.exporter: "jaeger"
otel.exporter.jaeger.endpoint: "http://tempo:14250"
otel.exporter.jaeger.traces.endpoint: "http://tempo:14250"
otel.resource.attributes: "service.name=diffy"
spring.application.name: "diffy"
logging.level.web: "INFO"
logging.level.io.opentelemetry: "WARN"
logging.level.root: "INFO"
logging.file.name: "/app/logs/diffy.log"
logging.file.max-size: "10MB"
logging.file.max-history: 1
logging.file.clean-history-on-start: "true"
spring.mongodb.embedded.version: "4.4.13"
dockerComposeLocal: "true"
volumes:
- ./data/logs:/app/logs
depends_on:
- tempo
- mongodb
- primary
- secondary
- candidate
promtail:
image: grafana/promtail:2.2.0
command: -config.file=/etc/promtail/promtail-local.yaml
volumes:
- ./etc/promtail-local.yaml:/etc/promtail/promtail-local.yaml
- ./data/logs:/app/logs
depends_on:
- diffy
- loki
prometheus:
image: prom/prometheus:latest
volumes:
- ./etc/prometheus.yaml:/etc/prometheus.yaml
entrypoint:
- /bin/prometheus
- --config.file=/etc/prometheus.yaml
ports:
- "9090:9090"
depends_on:
- diffy
grafana:
image: grafana/grafana:7.4.0-ubuntu
volumes:
- ./data/grafana-data/datasources:/etc/grafana/provisioning/datasources
- ./data/grafana-data/dashboards-provisioning:/etc/grafana/provisioning/dashboards
- ./data/grafana-data/dashboards:/var/lib/grafana/dashboards
environment:
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
- GF_AUTH_DISABLE_LOGIN_FORM=true
ports:
- "3000:3000"
depends_on:
- prometheus
- tempo-query
- loki