diff options
author | Niklas Yann Wettengel <niyawe@niyawe.de> | 2021-09-11 14:56:47 +0200 |
---|---|---|
committer | Niklas Yann Wettengel <niyawe@niyawe.de> | 2021-09-11 14:56:47 +0200 |
commit | 4f2e1d7b8d21f1752b7d0c49f8e9ecf4fb3dd1d7 (patch) | |
tree | 69d4095a0b7ac21f7628ef9b44cb666b45f8fead /roles/install_monitoring/tasks | |
parent | 98b46e45ebe17a83c452b781d5d3e6750f4bff94 (diff) |
munin wg peers
Diffstat (limited to 'roles/install_monitoring/tasks')
-rw-r--r-- | roles/install_monitoring/tasks/install_munin.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/roles/install_monitoring/tasks/install_munin.yml b/roles/install_monitoring/tasks/install_munin.yml index 1a35928..0a95622 100644 --- a/roles/install_monitoring/tasks/install_munin.yml +++ b/roles/install_monitoring/tasks/install_munin.yml @@ -57,6 +57,31 @@ notify: restart munin-node when: "'fastd' in group_names" +- name: copy wg peers plugin + copy: + src: munin/munin_wg_peers + dest: /usr/lib/munin/plugins/wg_peers_ + mode: 0755 + notify: restart munin-node + when: "'fastd' in group_names" + +- name: copy wg peers plugin config + copy: + src: munin/munin_wg_conf + dest: /etc/munin/plugin-conf.d/wg + mode: 0644 + notify: restart munin-node + when: "'fastd' in group_names" + +- name: enable munin plugins for wg peers + file: + path: /etc/munin/plugins/wg_peers_{{ item.name }} + src: /usr/lib/munin/plugins/wg_peers_ + state: link + with_items: "{{ sites }}" + notify: restart munin-node + when: "'fastd' in group_names" + - name: copy dhcp-pool plugin copy: src: munin/munin_dhcp_pool_plugin |