Como monitorar passageiros com monit

7

Eu quero configurar o monitor para monitorar o passageiro, mas tudo o que encontrei até agora basicamente diz apenas monitorar seu site usando o monit. Se possível, gostaria de monitorar o passageiro diretamente para ter mais controle sobre ele.

    
por DEfusion 25.01.2010 / 01:03

1 resposta

2

Você quer monitorar passageiro ou apache?

Para o apache, há uma entrada no arquivo / etc / monit / monitrc que você pode usar como está:

#  check process apache with pidfile /usr/local/apache/logs/httpd.pid
#    start program = "/etc/init.d/httpd start" with timeout 60 seconds
#    stop program  = "/etc/init.d/httpd stop"
#    if cpu > 60% for 2 cycles then alert
#    if cpu > 80% for 5 cycles then restart
#    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 www.tildeslash.com port 80 protocol http
#       and request "/monit/doc/next.php"
#       then restart
#    if failed port 443 type tcpssl protocol http
#       with timeout 15 seconds
#       then restart
#    if 3 restarts within 5 cycles then timeout
#    depends on apache_bin
#    group server
    
por 25.01.2010 / 22:51