blob: 707b06a20c0c14fc08582de6e9786ac2b485fe65 (
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
26
27
28
29
|
---
- name: install prometheus node exporter
become: yes
apt: name="prometheus-node-exporter"
- name: ensure prometheus node exporter is started
become: yes
systemd: name="prometheus-node-exporter.service" enabled="yes" state="started"
# # 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
|