Aqui está um exemplo de arquivo de configuração /etc/monit.conf
. Certifique-se de ter algo semelhante à linha que começa com "set httpd port 2812 and ..." no seu arquivo de configuração.
set daemon 60
set logfile syslog facility log_daemon
set idfile /tmp/monit.id
set statefile /tmp/monit.state
set mailserver localhost
set alert [email protected]
set httpd port 2812 and
#use address localhost # only accept connection from localhost
allow 172.16.16.0/255.255.255.0
allow localhost # allow localhost to connect to the server and
allow admin:monit # require user 'admin' with password 'monit'
check system Fruity
if loadavg (1min) > 6 then alert
if loadavg (5min) > 6 then alert
if memory usage > 90% then alert
if swap usage > 20% then alert
if cpu usage (user) > 90% then alert
if cpu usage (system) > 75% then alert
if cpu usage (wait) > 75% then alert