-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmonitoring.yml
More file actions
44 lines (38 loc) · 815 Bytes
/
monitoring.yml
File metadata and controls
44 lines (38 loc) · 815 Bytes
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
---
- name: setup node exporter for all nodes
hosts: all
roles:
- monitoring
- cloudalchemy.node_exporter
- name: setup postgres exporter
hosts: postgres
roles:
- monitoring
- ome.prometheus_postgres
- name: setup redis exporter
hosts: redis
roles:
- monitoring
- prometheus_redis_exporter
become: true
- name: setup HAProxy exporter
hosts: load_balancing
roles:
- monitoring
- bdellegrazie.haproxy_exporter
- name: setup nginx exporter
hosts: webservers
roles:
- monitoring
- bdellegrazie.nginx_exporter
- name: setup Prometheus and Alertmanager
hosts: prometheus
roles:
- monitoring
- cloudalchemy.prometheus
- cloudalchemy.alertmanager
- name: setup Grafana
hosts: grafana
roles:
- monitoring
- cloudalchemy.grafana