ansible-roles/memcached/tasks/munin.yml

39 lines
848 B
YAML
Raw Normal View History

2017-06-02 10:45:01 +02:00
---
2018-06-14 17:13:20 +02:00
- name: Choose packages (Oracle)
set_fact:
2020-04-23 12:01:01 +02:00
multi: "multi_"
when: memcached_instance_name !=""
2017-06-02 10:45:01 +02:00
- name: is Munin present ?
stat:
path: /etc/munin/plugin-conf.d/munin-node
check_mode: no
register: munin_node_plugins_config
tags:
- memcached
- munin
- block:
- name: Install munin-plugins-extra and libcache-memcached-perl for Munin
apt:
2019-12-31 15:25:10 +01:00
name:
- 'munin-plugins-extra'
- 'libcache-memcached-perl'
2017-06-02 10:45:01 +02:00
state: present
- name: Enable core Munin plugins
file:
src: '/usr/share/munin/plugins/memcached_'
2018-06-14 17:13:20 +02:00
dest: /etc/munin/plugins/{{ multi }}{{ item }}
2017-06-02 10:45:01 +02:00
state: link
with_items:
- memcached_bytes
- memcached_counters
- memcached_rates
notify: restart munin-node
when: munin_node_plugins_config.stat.exists
tags:
- memcached
- munin