Global_monitoring #24
2 changed files with 1 additions and 85 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env ansible-playbook
|
#!/usr/bin/env ansible-playbook
|
||||||
---
|
---
|
||||||
- hosts: prometheus-fleming.adm.auro.re,prometheus-fleming-fo.adm.auro.re
|
- hosts: prometheus-fleming.adm.auro.re
|
||||||
vars:
|
vars:
|
||||||
prometheus_alertmanager: docker-ovh.adm.auro.re:9093
|
prometheus_alertmanager: docker-ovh.adm.auro.re:9093
|
||||||
snmp_unifi_password: "{{ vault_snmp_unifi_password }}"
|
snmp_unifi_password: "{{ vault_snmp_unifi_password }}"
|
||||||
|
|
|
@ -1,84 +0,0 @@
|
||||||
---
|
|
||||||
- name: Install Prometheus
|
|
||||||
apt:
|
|
||||||
update_cache: true
|
|
||||||
name:
|
|
||||||
- prometheus
|
|
||||||
- prometheus-snmp-exporter
|
|
||||||
register: apt_result
|
|
||||||
retries: 3
|
|
||||||
until: apt_result is succeeded
|
|
||||||
|
|
||||||
- name: Configure Prometheus
|
|
||||||
template:
|
|
||||||
src: prometheus/prometheus.yml.j2
|
|
||||||
dest: /etc/prometheus/prometheus.yml
|
|
||||||
mode: 0644
|
|
||||||
notify: Restart Prometheus
|
|
||||||
|
|
||||||
- name: Configure Prometheus alert rules
|
|
||||||
template:
|
|
||||||
src: "prometheus/{{ item }}.j2"
|
|
||||||
dest: "/etc/prometheus/{{ item }}"
|
|
||||||
mode: 0644
|
|
||||||
notify: Restart Prometheus
|
|
||||||
loop:
|
|
||||||
- alert.rules.yml
|
|
||||||
- django.rules.yml
|
|
||||||
|
|
||||||
- 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
|
|
||||||
|
|
||||||
# This file store SNMP OIDs
|
|
||||||
- name: Configure Prometheus snmp-exporter
|
|
||||||
template:
|
|
||||||
src: "prometheus/snmp.yml.j2"
|
|
||||||
dest: "/etc/prometheus/snmp.yml"
|
|
||||||
mode: 0600
|
|
||||||
owner: prometheus
|
|
||||||
notify: Restart prometheus-snmp-exporter
|
|
||||||
|
|
||||||
# We don't need to restart Prometheus when updating nodes
|
|
||||||
- name: Configure Prometheus nodes
|
|
||||||
copy:
|
|
||||||
content: "{{ prometheus_targets | to_nice_json }}"
|
|
||||||
dest: /etc/prometheus/targets.json
|
|
||||||
mode: 0644
|
|
||||||
|
|
||||||
# We don't need to restart Prometheus when updating nodes
|
|
||||||
- name: Configure Prometheus Ubiquity Unifi SNMP devices
|
|
||||||
copy:
|
|
||||||
content: "{{ prometheus_unifi_snmp_targets | to_nice_json }}"
|
|
||||||
dest: /etc/prometheus/targets_unifi_snmp.json
|
|
||||||
mode: 0644
|
|
||||||
when: prometheus_unifi_snmp_targets is defined
|
|
||||||
|
|
||||||
- name: Configure Prometheus UPS SNMP devices
|
|
||||||
copy:
|
|
||||||
content: "{{ [{'targets': prometheus_ups_snmp_targets }]7yk[:Cp_g$#dT'yv!. | to_nice_json }}\n"
|
|
||||||
dest: /etc/prometheus/targets_ups_snmp.json
|
|
||||||
mode: 0644
|
|
||||||
when: prometheus_ups_snmp_targets is defined
|
|
||||||
|
|
||||||
- name: Configure Prometheus docker monitoring
|
|
||||||
copy:
|
|
||||||
content: "{{ [{'targets': prometheus_docker_targets }] | to_nice_json }}\n"
|
|
||||||
dest: /etc/prometheus/targets_docker.json
|
|
||||||
mode: 0644
|
|
||||||
when: prometheus_docker_targets is defined
|
|
||||||
|
|
||||||
- name: Activate prometheus service
|
|
||||||
systemd:
|
|
||||||
name: prometheus
|
|
||||||
enabled: true
|
|
||||||
state: started
|
|
||||||
|
|
||||||
- name: Indicate role in motd
|
|
||||||
template:
|
|
||||||
src: update-motd.d/05-service.j2
|
|
||||||
dest: /etc/update-motd.d/05-prometheus
|
|
||||||
mode: 0755
|
|
Loading…
Reference in a new issue