30 lines
562 B
YAML
30 lines
562 B
YAML
---
|
|
|
|
# Useless junks for LXC
|
|
- name: Delete junks for LXC containers
|
|
ansible.builtin.file:
|
|
path: "/etc/munin/plugins/{{ item }}"
|
|
state: absent
|
|
notify:
|
|
- Restart munin-node
|
|
loop:
|
|
- acpi
|
|
- cpuspeed
|
|
- diskstats
|
|
- entropy
|
|
- irqstats
|
|
|
|
# Per process CPU/RAM
|
|
- name: Add per process CPU/RAM metrics
|
|
ansible.builtin.copy:
|
|
src: "files/{{ item }}"
|
|
dest: "/etc/munin/plugins/{{ item }}"
|
|
mode: "0o755"
|
|
owner: root
|
|
group: root
|
|
notify:
|
|
- Restart munin-node
|
|
loop:
|
|
- cpu_by_process
|
|
- memory_by_process
|