ansible-roles/postgresql/tasks/munin.yml

45 lines
1.3 KiB
YAML
Raw Normal View History

2016-12-22 16:12:34 +01:00
---
- name: Are Munin plugins present in /etc ?
ansible.builtin.stat:
path: /etc/munin/plugins
register: etc_munin_plugins
- name: Are Munin plugins present in /usr/share ?
ansible.builtin.stat:
path: /usr/share/munin/plugins
register: usr_share_munin_plugins
2016-12-22 16:12:34 +01:00
- name: Add Munin plugins for PostgreSQL
ansible.builtin.file:
2016-12-22 16:12:34 +01:00
state: link
2022-12-28 09:03:37 +01:00
src: '/usr/share/munin/plugins/{{ item }}'
dest: '/etc/munin/plugins/{{ item }}'
loop:
2021-08-27 11:01:26 +02:00
- postgres_bgwriter
- postgres_checkpoints
- postgres_connections_db
- postgres_users
- postgres_xlog
2016-12-22 16:12:34 +01:00
notify: restart munin-node
when: etc_munin_plugins.stat.exists and usr_share_munin_plugins.stat.exists
2016-12-22 16:12:34 +01:00
- name: Add Munin plugins for PostgreSQL (for specific databases)
ansible.builtin.file:
2016-12-22 16:12:34 +01:00
state: link
2022-12-28 09:03:37 +01:00
src: '/usr/share/munin/plugins/{{ item[0] }}'
dest: '/etc/munin/plugins/{{ item[0] }}{{ item[1] }}'
loop: "{{ _plugins | product(_databases) | list }}"
vars:
_plugins:
- 'postgres_cache_'
- 'postgres_connections_'
- 'postgres_locks_'
- 'postgres_querylength_'
- 'postgres_scans_'
- 'postgres_size_'
- 'postgres_transactions_'
- 'postgres_tuples_'
_databases: "{{ postgresql_databases }}"
2016-12-22 16:12:34 +01:00
notify: restart munin-node
when: etc_munin_plugins.stat.exists and usr_share_munin_plugins.stat.exists