Fix the nagios check for the swap space on Ubuntu Xenial

This commit is contained in:
Andrea Dell'Amico 2018-05-04 17:06:49 +02:00
parent a7315ae537
commit 7fac63e071
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ command[global_check_memory]={{ nagios_plugins_dir }}/check_memory.xenial -u M -
{% else %}
command[global_check_memory]={{ nagios_plugins_dir }}/check_memory -u M -w 5% -c 1%
{% endif %}
command[global_check_swap]={{ nagios_plugins_dir }}/check_swap -w 20% -c 5%
command[global_check_swap]={{ nagios_plugins_dir }}/check_swap -w 20% -c 5% {% if ansible_distribution_release == 'xenial' %}-n ok{% endif %}
command[global_check_zombie_procs]={{ nagios_plugins_dir }}/check_procs -w 5 -c 10 -s Z
command[global_check_total_procs]={{ nagios_plugins_dir }}/check_procs -w 800 -c 1000