-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
mon.yml
143 lines (119 loc) · 3.48 KB
/
mon.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
# Copyright Dave Verwer, Sven A. Schmidt, and other contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
version: '3.7'
# logging & monitoring visualiser
services:
grafana:
# https://github.com/grafana/grafana/releases
image: grafana/grafana:11.3.0
environment:
GF_SECURITY_ADMIN_PASSWORD: ${GF_SECURITY_ADMIN_PASSWORD}
GF_USERS_ALLOW_SIGN_UP: 'false'
GF_SERVER_ROOT_URL: "${GF_SERVER_ROOT_URL}"
volumes:
- grafana_data:/var/lib/grafana
ports:
- 3000:3000
networks:
- app_backend
deploy:
placement:
constraints:
# placement for data persistence
- node.labels.grafana_node == true
# logging
loki:
# https://github.com/grafana/loki/releases
image: grafana/loki:3.2.1
command: -config.file=/loki.yml
configs:
- source: loki_cfg
target: /loki.yml
networks:
- app_backend
promtail:
# https://github.com/grafana/loki/releases
# (promtail is released in parallel with loki)
image: grafana/promtail:3.2.1
command: -config.file=/promtail.yml
configs:
- source: promtail_cfg
target: /promtail.yml
volumes:
- /var/lib/docker/containers:/var/log
networks:
- app_backend
deploy:
mode: global
# monitoring
prometheus:
# https://github.com/prometheus/prometheus/releases
image: prom/prometheus:v2.55.1
volumes:
- prometheus_data:/prometheus
command: --config.file=/prometheus.yml --storage.tsdb.retention.time=30d
configs:
- source: prometheus_cfg
target: /prometheus.yml
networks:
- app_backend
deploy:
placement:
constraints:
# placement for data persistence
- node.labels.prometheus_node == true
pushgateway:
# https://github.com/prometheus/pushgateway/releases
image: prom/pushgateway:v1.10.0
networks:
- app_backend
node-exporter:
# https://github.com/prometheus/node_exporter/releases
image: prom/node-exporter:v1.8.2
networks:
- app_backend
volumes:
- /proc:/host/proc
- /sys:/host/sys
- /:/rootfs
command: --path.procfs /host/proc --path.sysfs /host/sys --collector.textfile.directory /etc/node-exporter/ --collector.filesystem.mount-points-exclude "^/(sys|proc|dev|host|etc)($$|/)"
deploy:
mode: global
cadvisor:
# https://github.com/google/cadvisor/releases
image: gcr.io/cadvisor/cadvisor:v0.51.0
networks:
- app_backend
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
- "/:/rootfs:ro"
- "/var/run:/var/run:ro"
- "/sys:/sys:ro"
- "/var/lib/docker/:/var/lib/docker:ro"
- "/dev/disk/:/dev/disk:ro"
deploy:
mode: global
configs:
loki_cfg:
file: ./infrastructure/loki.yml
promtail_cfg:
file: ./infrastructure/promtail.yml
prometheus_cfg:
file: ./infrastructure/prometheus.yml
volumes:
grafana_data:
prometheus_data:
networks:
app_backend:
external: true