-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.load-testing.yml
More file actions
279 lines (230 loc) · 6.96 KB
/
docker-compose.load-testing.yml
File metadata and controls
279 lines (230 loc) · 6.96 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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
networks:
demo:
driver: bridge
services:
############################## AUX SERVICES ###############################
postgres:
extends:
file: docker-compose.dependencies.yml
service: postgres
pgweb:
extends:
file: docker-compose.dependencies-clients.yml
service: pgweb
mongodb:
extends:
file: docker-compose.dependencies.yml
service: mongodb
mongo-express:
extends:
file: docker-compose.dependencies-clients.yml
service: mongo-express
redis:
extends:
file: docker-compose.dependencies.yml
service: redis
redis-commander:
extends:
file: docker-compose.dependencies-clients.yml
service: redis-commander
rabbitmq:
extends:
file: docker-compose.dependencies.yml
service: rabbitmq
storage:
extends:
file: docker-compose.dependencies.yml
service: storage
############################## EXTERNAL ###############################
mailpit:
extends:
file: docker-compose.external.yml
service: mailpit
############################## OBSERVABILITY ###############################
prometheus:
extends:
file: docker-compose.observability.yml
service: prometheus
loki:
extends:
file: docker-compose.observability.yml
service: loki
tempo:
extends:
file: docker-compose.observability.yml
service: tempo
pyroscope:
extends:
file: docker-compose.observability.yml
service: pyroscope
otel-collector:
extends:
file: docker-compose.observability.yml
service: otel-collector
altertmanager:
extends:
file: docker-compose.observability.yml
service: altertmanager
postgres-exporter:
extends:
file: docker-compose.observability.yml
service: postgres-exporter
grafana:
extends:
file: docker-compose.observability.yml
service: grafana
############################## DEMO SERVICES ###############################
gateway-email:
build:
context: .
dockerfile: ./src/Demo.Gateway.Email/Dockerfile
image: technobre/demo-gateway-email
container_name: gateway-email
restart: always
environment:
SYSTEM_ENVIRONMENT: PROD
CONNECTIONSTRINGS__STORAGE: DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://storage:10000/devstoreaccount1;
STORAGE__CONTAINERNAME: email-blobs
MESSAGEBUS__HOSTNAME: rabbitmq
MESSAGEBUS__SSL__SERVERNAME: rabbitmq
### Observability
OTEL_EXPORTER_OTLP_ENDPOINT: http://otel-collector:4317
PYROSCOPE_SERVER_ADDRESS: http://pyroscope:4040
PYROSCOPE_LABELS: system.environment:PROD
ports:
- 8098:8080
networks:
- demo
depends_on:
rabbitmq:
condition: service_healthy
storage:
condition: service_healthy
pyroscope:
condition: service_started
otel-collector:
condition: service_started
gateway-sms:
build:
context: .
dockerfile: ./src/Demo.Gateway.SMS/Dockerfile
image: technobre/demo-gateway-sms
container_name: gateway-sms
restart: always
environment:
SYSTEM_ENVIRONMENT: PROD
MESSAGEBUS__HOSTNAME: rabbitmq
MESSAGEBUS__SSL__SERVERNAME: rabbitmq
### Observability
OTEL_EXPORTER_OTLP_ENDPOINT: http://otel-collector:4317
PYROSCOPE_SERVER_ADDRESS: http://pyroscope:4040
PYROSCOPE_LABELS: system.environment:PROD
ports:
- 8099:8080
networks:
- demo
depends_on:
rabbitmq:
condition: service_healthy
pyroscope:
condition: service_started
otel-collector:
condition: service_started
api-users:
build:
context: .
dockerfile: ./src/Demo.Api.Users/Dockerfile
image: technobre/demo-api-users
container_name: api-users
restart: always
environment:
SYSTEM_ENVIRONMENT: PROD
CONNECTIONSTRINGS__MONGODB: mongodb://mongodb:27017/Demo
CONNECTIONSTRINGS__REDIS: redis:6379
NOTIFICATIONSAPI: http://api-notifications:8081
### Observability
OTEL_EXPORTER_OTLP_ENDPOINT: http://otel-collector:4317
PYROSCOPE_SERVER_ADDRESS: http://pyroscope:4040
PYROSCOPE_LABELS: system.environment:PROD
### API Configuration
EXCEPTION_PROBABILITY: 0
ports:
- 8088:8080
networks:
- demo
depends_on:
mongodb:
condition: service_healthy
redis:
condition: service_healthy
pyroscope:
condition: service_started
otel-collector:
condition: service_started
api-notifications:
build:
context: .
dockerfile: ./src/Demo.Api.Notifications/Dockerfile
image: technobre/demo-api-notifications
container_name: api-notifications
restart: always
environment:
SYSTEM_ENVIRONMENT: PROD
CONNECTIONSTRINGS__POSTGRES: Server=postgres;Port=5432;Database=demodb;User Id=demouser;Password=a123456789;
CONNECTIONSTRINGS__STORAGE: DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://storage:10000/devstoreaccount1;
STORAGE__CONTAINERNAME: email-blobs
MESSAGEBUS__HOSTNAME: rabbitmq
MESSAGEBUS__SSL__SERVERNAME: rabbitmq
USERSAPI: http://api-users:8080
### Observability
OTEL_EXPORTER_OTLP_ENDPOINT: http://otel-collector:4317
PYROSCOPE_SERVER_ADDRESS: http://pyroscope:4040
PYROSCOPE_LABELS: system.environment:PROD
### API Configuration
EXCEPTION_PROBABILITY: 0
ports:
- 8089:8080 # Web Api
- 8090:8081 # gRPC Api
networks:
- demo
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
storage:
condition: service_healthy
pyroscope:
condition: service_started
otel-collector:
condition: service_started
gateway-sms:
condition: service_healthy
gateway-email:
condition: service_healthy
api-users:
condition: service_healthy
############################## TESTS ###############################
k6:
image: grafana/k6:1.7.1
container_name: k6
environment:
K6_PROMETHEUS_RW_SERVER_URL: http://prometheus:9090/api/v1/write
K6_PROMETHEUS_RW_TREND_STATS: p(95),p(99),min,max
K6_PROMETHEUS_RW_TREND_AS_NATIVE_HISTOGRAM: true
# APIS
USERS_API_HOST: http://api-users:8080
NOTIFICATIONS_API_HOST: http://api-notifications:8080
volumes:
- ./tests/tests.js:/scripts/script.js
working_dir: /scripts
command: run -o experimental-prometheus-rw /scripts/script.js
networks:
- demo
depends_on:
prometheus:
condition: service_healthy
api-users:
condition: service_healthy
api-notifications:
condition: service_healthy