Add check_logfiles for mail activity
This commit is contained in:
parent
82ec5f8206
commit
65e6ed9aee
3 changed files with 33 additions and 1 deletions
|
@ -5,6 +5,11 @@ object CheckCommand "sudo_pgsql" {
|
||||||
command = [ "sudo", "-u", "postgres" ] + command
|
command = [ "sudo", "-u", "postgres" ] + command
|
||||||
}
|
}
|
||||||
|
|
||||||
|
object CheckCommand "sudo_logfiles" {
|
||||||
|
import "logfiles"
|
||||||
|
command = [ "sudo" ] + command
|
||||||
|
}
|
||||||
|
|
||||||
# the original "systemd" CheckCommand uses /check_systemd.py as executable
|
# the original "systemd" CheckCommand uses /check_systemd.py as executable
|
||||||
object CheckCommand "check_systemd" {
|
object CheckCommand "check_systemd" {
|
||||||
import "systemd"
|
import "systemd"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
mode: 0644
|
mode: 0644
|
||||||
notify: Reload icinga2 service
|
notify: Reload icinga2 service
|
||||||
|
|
||||||
- name: Copy sudoers file for nagios as postgres
|
- name: Copy sudoers file for nagios as postgres (for check_pgsql)
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
content: 'nagios ALL=(postgres) NOPASSWD:/usr/lib/nagios/plugins/check_pgsql'
|
content: 'nagios ALL=(postgres) NOPASSWD:/usr/lib/nagios/plugins/check_pgsql'
|
||||||
|
@ -20,3 +20,18 @@
|
||||||
group: root
|
group: root
|
||||||
mode: 0440
|
mode: 0440
|
||||||
validate: 'visudo -cf %s'
|
validate: 'visudo -cf %s'
|
||||||
|
|
||||||
|
- name: Install packages
|
||||||
|
become: true
|
||||||
|
ansible.builtin.apt:
|
||||||
|
name: monitoring-plugins-check-logfiles
|
||||||
|
|
||||||
|
- name: Copy sudoers file for nagios as root (for check_logfiles)
|
||||||
|
become: true
|
||||||
|
ansible.builtin.copy:
|
||||||
|
content: 'nagios ALL=(root) NOPASSWD:/usr/lib/nagios/plugins/check_logfiles'
|
||||||
|
dest: /etc/sudoers.d/nagios-logfiles
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0440
|
||||||
|
validate: 'visudo -cf %s'
|
||||||
|
|
|
@ -35,3 +35,15 @@ apply Service "mailserver-pgsql" {
|
||||||
vars.pgsql_hostname = "/run/postgresql"
|
vars.pgsql_hostname = "/run/postgresql"
|
||||||
vars.pgsql_database = "mailserver"
|
vars.pgsql_database = "mailserver"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply Service "mail-activity" {
|
||||||
|
import "generic-service"
|
||||||
|
check_command = "sudo_logfiles"
|
||||||
|
check_interval = 30m
|
||||||
|
command_endpoint = host.name
|
||||||
|
assign where host.name == "{{ inventory_hostname }}"
|
||||||
|
vars.logfiles_logfile = "/var/log/mail.log"
|
||||||
|
vars.logfiles_tag = "mail_active"
|
||||||
|
vars.logfiles_rotation = "mail.log.*"
|
||||||
|
vars.logfiles_critical_pattern = "!relay="
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue