ansible/roles/prometheus/tasks/main.yml

72 lines
1.5 KiB
YAML
Raw Normal View History

2019-05-05 14:07:04 +02:00
---
- name: Install Prometheus
apt:
update_cache: true
2019-07-22 20:56:43 +02:00
name:
- prometheus
- prometheus-snmp-exporter
2019-05-05 14:07:04 +02:00
register: apt_result
retries: 3
until: apt_result is succeeded
- name: Configure Prometheus
template:
2021-04-01 18:24:21 +02:00
src: "{{ item }}.j2"
dest: "/etc/prometheus/{{ item }}"
2021-04-01 09:40:22 +02:00
owner: prometheus
group: prometheus
mode: u=r,g=r,o=
2019-07-22 20:56:43 +02:00
loop:
2021-04-01 09:40:22 +02:00
- prometheus.yml
2021-04-11 15:58:35 +02:00
notify: Restart Prometheus
2021-04-11 22:01:21 +02:00
- name: Creates directory for alerts
2021-04-11 15:58:35 +02:00
file:
path: /etc/prometheus/alerts
state: directory
2021-04-14 19:29:12 +02:00
owner: prometheus
group: prometheus
mode: 0755
2021-04-11 15:58:35 +02:00
- name: Configure Prometheus alerts
template:
src: "{{ item }}.j2"
dest: "/etc/prometheus/alerts/{{ item }}"
owner: prometheus
group: prometheus
mode: u=r,g=r,o=
loop:
- server.rules.yml
2021-04-11 16:43:34 +02:00
- docker.rules.yml
2021-04-11 15:58:35 +02:00
- ups.rules.yml
- postgres.rules.yml
- environmental.rules.yml
2021-12-31 21:19:35 +01:00
- ilo.rules.yml
2021-04-01 09:40:22 +02:00
notify: Restart Prometheus
2019-07-22 20:56:43 +02:00
- name: Make Prometheus snmp-exporter listen on localhost only
lineinfile:
path: /etc/default/prometheus-snmp-exporter
regexp: '^ARGS='
line: "ARGS=\"--web.listen-address=127.0.0.1:9116\""
notify: Restart prometheus-snmp-exporter
2019-05-05 14:07:04 +02:00
2021-08-20 16:58:28 +02:00
# These files store SNMP OIDs
2019-11-01 14:16:32 +01:00
- name: Configure Prometheus snmp-exporter
template:
2021-08-20 16:58:28 +02:00
src: "{{ item }}.j2"
dest: "/etc/prometheus/{{ item }}"
2019-11-01 14:16:32 +01:00
owner: prometheus
2021-04-01 09:40:22 +02:00
group: prometheus
mode: u=r,g=r,o=
2021-08-20 16:58:28 +02:00
loop:
- snmp.yml
2019-11-01 14:16:32 +01:00
notify: Restart prometheus-snmp-exporter
2019-07-22 20:56:43 +02:00
- name: Activate prometheus service
systemd:
name: prometheus
2019-07-22 21:04:58 +02:00
enabled: true
2019-07-22 20:56:43 +02:00
state: started
2021-04-12 10:58:59 +02:00
...