Fichier de conf de monit : relance/signale un service
This commit is contained in:
parent
bd70358c61
commit
237202bcdd
1 changed files with 47 additions and 0 deletions
47
files/etc/monitrc
Executable file
47
files/etc/monitrc
Executable file
|
@ -0,0 +1,47 @@
|
|||
###############################################################################
|
||||
## Monit Cr@ns Config !
|
||||
###############################################################################
|
||||
##
|
||||
## Start Monit in the background (run as a daemon):
|
||||
#
|
||||
set daemon 60 # check services at 1-minute intervals
|
||||
with start delay 30 # optional: delay the first check by 4-minutes (by
|
||||
# # default Monit check immediately after Monit start)
|
||||
|
||||
set logfile syslog facility log_daemon
|
||||
#set logfile /tmp/monit_log # Test logging
|
||||
#
|
||||
## Set the location of the Monit id file which stores the unique id for the
|
||||
## Monit instance. The id is generated and stored on first Monit start. By
|
||||
## default the file is placed in $HOME/.monit.id.
|
||||
#
|
||||
set idfile /var/.monit.id
|
||||
|
||||
# Bind and authorize only to localhost:
|
||||
set httpd port 2812 and
|
||||
use address localhost
|
||||
allow localhost
|
||||
|
||||
#
|
||||
## Set the location of the Monit state file which saves monitoring states
|
||||
## on each cycle. By default the file is placed in $HOME/.monit.state. If
|
||||
## the state file is stored on a persistent filesystem, Monit will recover
|
||||
## the monitoring state across reboots. If it is on temporary filesystem, the
|
||||
## state will be lost on reboot which may be convenient in some situations.
|
||||
#
|
||||
set statefile /var/.monit.state
|
||||
|
||||
## Check hostapd
|
||||
check process hostapd with pidfile /var/run/wifi-phy0.pid
|
||||
start program = "/usr/sbin/hostapd -P /var/run/wifi-phy0.pid -B /var/run/hostapd-phy0.conf" with timeout 60 seconds
|
||||
stop program = "/usr/bin/killall hostapd"
|
||||
if 5 restarts within 5 cycles then timeout
|
||||
|
||||
check process sshd with pidfile /var/run/dropbear.1.pid
|
||||
start program "/etc/init.d/dropbear start"
|
||||
stop program "/etc/init.d/dropbear stop"
|
||||
if failed port 22 protocol ssh then restart
|
||||
if 5 restarts within 5 cycles then timeout
|
||||
|
||||
check program watch_net with path "/usr/share/watch_net/watch_net.sh"
|
||||
if status != 0 then alert
|
Loading…
Add table
Add a link
Reference in a new issue