ansible-roles/redis/tasks/instance-log2mail.yml

20 lines
530 B
YAML

---
- name: log2mail config is present
blockinfile:
dest: /etc/log2mail/config/redis.conf
owner: log2mail
group: adm
mode: "0640"
create: yes
marker: "# {mark} ANSIBLE MANAGED RULES FOR INSTANCE {{ redis_instance_name }}"
content: |
file = {{ redis_log_dir }}/redis-server.log
pattern = "Cannot allocate memory"
mailto = {{ log2mail_alert_email or general_alert_email | mandatory }}
template = /etc/log2mail/mail
notify: restart log2mail
tags:
- redis
- log2mail