Coloque o comando dentro de um shellscript
if cpu > 75% for 2 cycles then exec "/full/path/custom_email.sh"
Em seguida, /full/path/custom_email.sh conteria algo como
#!/bin/bash
command|mail -s subject [email protected]
Gostaria de personalizar uma mensagem de alerta para a seguinte condição:
if cpu > 75% for 2 cycles then exec "command|mail -s subject [email protected]"
para o arquivo de configuração monitrc
como posso adicionar esse comando?
check process apache with pidfile /var/run/apache2.pid
start program = "/etc/init.d/apache2 start" with timeout 60 seconds
stop program = "/etc/init.d/apache2 stop"
if cpu > 60% for 2 cycles then alert
if cpu > 80% for 5 cycles then restart # 10minutes
if totalmem > 200.0 MB for 5 cycles then restart
if children > 250 then restart
if loadavg(5min) greater than 10 for 8 cycles then stop
if failed host 192.168.1.200 port 80 protocol http
and request "/monit/token"
then restart
Por que, se adicionar essa linha, nenhum email será enviado quando a condição for atendida? Alguma idéia?
Coloque o comando dentro de um shellscript
if cpu > 75% for 2 cycles then exec "/full/path/custom_email.sh"
Em seguida, /full/path/custom_email.sh conteria algo como
#!/bin/bash
command|mail -s subject [email protected]
Tags monit