blob: 7abfa79a1b84ac41431543bf1088af753038e8f4 (
plain)
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
|
---
- name: install prometheus node exporter
become: yes
apt: name="prometheus-node-exporter"
# # Nginx
# - name: check if running nginx
# stat: path="/etc/nginx/"
# register: stat_nginx_conf
# - name: install prometheus-nginx-exporter
# become: yes
# apt: name="prometheus-nginx-exporter"
# when: stat_nginx_conf.stat.exists
# # PostgreSQL
# - name: check if running postgresql
# stat: path="/etc/postgresql/"
# register: stat_postgresql_conf
# - name: install prometheus-postgresql-exporter
# become: yes
# apt: name="prometheus-postgres-exporter"
# when: stat_postgresql_conf.stat.exists
|