ansible-role-apache/tasks/monitoring.yml
2022-06-29 01:56:45 +02:00

36 lines
927 B
YAML

---
- name: "monitoring | Aktiviere Apache-Module"
apache2_module:
name: status
state: present
notify: reload apache2
- name: "monitoring | Kopiere Konfigurationsdatei"
copy:
src: server-status.conf
dest: /etc/apache2/sites-available/server-status.conf
- name: "monitoring | Aktiviere Seitenkonfiguration für Localhost"
file:
src: /etc/apache2/sites-available/server-status.conf
dest: /etc/apache2/sites-enabled/server-status.conf
state: link
notify: reload apache2
- name: "monitoring | Kopiere Munin-Konfiguration"
template:
src: munin.j2
dest: /etc/munin/plugin-conf.d/yyy-apache
notify: restart munin-node
- name: "monitoring | Aktiviere Munin-Plugins"
file:
src: "/usr/share/munin/plugins/{{ item }}"
dest: "/etc/munin/plugins/{{ item }}"
state: link
loop:
- apache_accesses
- apache_processes
- apache_volume
notify: restart munin-node