-
Notifications
You must be signed in to change notification settings - Fork 142
/
docker-compose.yml
130 lines (119 loc) · 3.61 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
version: "3.8"
services:
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:
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
- 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