Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

etc_monit_monitrc.j2 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. ###############################################################################
  2. ## Monit control file
  3. ###############################################################################
  4. ##
  5. ## Comments begin with a '#' and extend through the end of the line. Keywords
  6. ## are case insensitive. All path's MUST BE FULLY QUALIFIED, starting with '/'.
  7. ##
  8. ## Below you will find examples of some frequently used statements. For
  9. ## information about the control file and a complete list of statements and
  10. ## options, please have a look in the Monit manual.
  11. ##
  12. ##
  13. ###############################################################################
  14. ## Global section
  15. ###############################################################################
  16. ##
  17. ## Start Monit in the background (run as a daemon):
  18. #
  19. set daemon 120 # check services at 2-minute intervals
  20. # with start delay 240 # optional: delay the first check by 4-minutes (by
  21. # # default Monit check immediately after Monit start)
  22. #
  23. #
  24. ## Set syslog logging with the 'daemon' facility. If the FACILITY option is
  25. ## omitted, Monit will use 'user' facility by default. If you want to log to
  26. ## a standalone log file instead, specify the full path to the log file
  27. #
  28. # set logfile syslog facility log_daemon
  29. set logfile /var/log/monit.log
  30. #
  31. #
  32. ## Set the location of the Monit id file which stores the unique id for the
  33. ## Monit instance. The id is generated and stored on first Monit start. By
  34. ## default the file is placed in $HOME/.monit.id.
  35. #
  36. # set idfile /var/.monit.id
  37. set idfile /var/lib/monit/id
  38. #
  39. ## Set the location of the Monit state file which saves monitoring states
  40. ## on each cycle. By default the file is placed in $HOME/.monit.state. If
  41. ## the state file is stored on a persistent filesystem, Monit will recover
  42. ## the monitoring state across reboots. If it is on temporary filesystem, the
  43. ## state will be lost on reboot which may be convenient in some situations.
  44. #
  45. set statefile /var/lib/monit/state
  46. #
  47. ## Set the list of mail servers for alert delivery. Multiple servers may be
  48. ## specified using a comma separator. If the first mail server fails, Monit
  49. # will use the second mail server in the list and so on. By default Monit uses
  50. # port 25 - it is possible to override this with the PORT option.
  51. #
  52. # set mailserver mail.bar.baz, # primary mailserver
  53. # backup.bar.baz port 10025, # backup mailserver on port 10025
  54. # localhost # fallback relay
  55. #
  56. set mailserver localhost
  57. ## By default Monit will drop alert events if no mail servers are available.
  58. ## If you want to keep the alerts for later delivery retry, you can use the
  59. ## EVENTQUEUE statement. The base directory where undelivered alerts will be
  60. ## stored is specified by the BASEDIR option. You can limit the maximal queue
  61. ## size using the SLOTS option (if omitted, the queue is limited by space
  62. ## available in the back end filesystem).
  63. #
  64. set eventqueue
  65. basedir /var/lib/monit/events # set the base directory where events will be stored
  66. slots 100 # optionally limit the queue size
  67. #
  68. #
  69. ## Send status and events to M/Monit (for more informations about M/Monit
  70. ## see http://mmonit.com/). By default Monit registers credentials with
  71. ## M/Monit so M/Monit can smoothly communicate back to Monit and you don't
  72. ## have to register Monit credentials manually in M/Monit. It is possible to
  73. ## disable credential registration using the commented out option below.
  74. ## Though, if safety is a concern we recommend instead using https when
  75. ## communicating with M/Monit and send credentials encrypted.
  76. #
  77. # set mmonit http://monit:monit@192.168.1.10:8080/collector
  78. # # and register without credentials # Don't register credentials
  79. #
  80. #
  81. ## Monit by default uses the following format for alerts if the the mail-format
  82. ## statement is missing::
  83. ## --8<--
  84. ## set mail-format {
  85. ## from: monit@$HOST
  86. ## subject: monit alert -- $EVENT $SERVICE
  87. ## message: $EVENT Service $SERVICE
  88. ## Date: $DATE
  89. ## Action: $ACTION
  90. ## Host: $HOST
  91. ## Description: $DESCRIPTION
  92. ##
  93. ## Your faithful employee,
  94. ## Monit
  95. ## }
  96. ## --8<--
  97. ##
  98. ## You can override this message format or parts of it, such as subject
  99. ## or sender using the MAIL-FORMAT statement. Macros such as $DATE, etc.
  100. ## are expanded at runtime. For example, to override the sender, use:
  101. #
  102. # set mail-format { from: monit@foo.bar }
  103. #
  104. set mail-format {
  105. from: monit@{{ domain }}
  106. subject: monit alert -- $EVENT $SERVICE
  107. message: $EVENT Service $SERVICE
  108. Date: $DATE
  109. Action: $ACTION
  110. Host: $HOST
  111. Description: $DESCRIPTION
  112. Your faithful employee,
  113. Monit from Sovereign
  114. }
  115. #
  116. ## You can set alert recipients whom will receive alerts if/when a
  117. ## service defined in this file has errors. Alerts may be restricted on
  118. ## events by using a filter as in the second example below.
  119. #
  120. # set alert sysadm@foo.bar # receive all alerts
  121. # set alert manager@foo.bar only on { timeout } # receive just service-
  122. # # timeout alert
  123. #
  124. set alert {{ admin_email }}
  125. #
  126. ## Monit has an embedded web server which can be used to view status of
  127. ## services monitored and manage services from a web interface. See the
  128. ## Monit Wiki if you want to enable SSL for the web server.
  129. #
  130. set httpd port 2812 and
  131. use address localhost # only accept connection from localhost
  132. allow localhost # allow localhost to connect to the server and
  133. allow {{ monit_admin_username }}:{{ monit_admin_password }}
  134. # allow @monit # allow users of group 'monit' to connect (rw)
  135. # allow @users readonly # allow users of group 'users' to connect readonly
  136. #
  137. ###############################################################################
  138. ## Services
  139. ###############################################################################
  140. ##
  141. ## Check general system resources such as load average, cpu and memory
  142. ## usage. Each test specifies a resource, conditions and the action to be
  143. ## performed should a test fail.
  144. #
  145. # check system myhost.mydomain.tld
  146. # if loadavg (1min) > 4 then alert
  147. # if loadavg (5min) > 2 then alert
  148. # if memory usage > 75% then alert
  149. # if swap usage > 25% then alert
  150. # if cpu usage (user) > 70% then alert
  151. # if cpu usage (system) > 30% then alert
  152. # if cpu usage (wait) > 20% then alert
  153. #
  154. #
  155. ## Check if a file exists, checksum, permissions, uid and gid. In addition
  156. ## to alert recipients in the global section, customized alert can be sent to
  157. ## additional recipients by specifying a local alert handler. The service may
  158. ## be grouped using the GROUP option. More than one group can be specified by
  159. ## repeating the 'group name' statement.
  160. #
  161. # check file apache_bin with path /usr/local/apache/bin/httpd
  162. # if failed checksum and
  163. # expect the sum 8f7f419955cefa0b33a2ba316cba3659 then unmonitor
  164. # if failed permission 755 then unmonitor
  165. # if failed uid root then unmonitor
  166. # if failed gid root then unmonitor
  167. # alert security@foo.bar on {
  168. # checksum, permission, uid, gid, unmonitor
  169. # } with the mail-format { subject: Alarm! }
  170. # group server
  171. #
  172. #
  173. ## Check that a process is running, in this case Apache, and that it respond
  174. ## to HTTP and HTTPS requests. Check its resource usage such as cpu and memory,
  175. ## and number of children. If the process is not running, Monit will restart
  176. ## it by default. In case the service is restarted very often and the
  177. ## problem remains, it is possible to disable monitoring using the TIMEOUT
  178. ## statement. This service depends on another service (apache_bin) which
  179. ## is defined above.
  180. #
  181. # check process apache with pidfile /usr/local/apache/logs/httpd.pid
  182. # start program = "/etc/init.d/httpd start" with timeout 60 seconds
  183. # stop program = "/etc/init.d/httpd stop"
  184. # if cpu > 60% for 2 cycles then alert
  185. # if cpu > 80% for 5 cycles then restart
  186. # if totalmem > 200.0 MB for 5 cycles then restart
  187. # if children > 250 then restart
  188. # if loadavg(5min) greater than 10 for 8 cycles then stop
  189. # if failed host www.tildeslash.com port 80 protocol http
  190. # and request "/somefile.html"
  191. # then restart
  192. # if failed port 443 type tcpssl protocol http
  193. # with timeout 15 seconds
  194. # then restart
  195. # if 3 restarts within 5 cycles then timeout
  196. # depends on apache_bin
  197. # group server
  198. #
  199. #
  200. ## Check filesystem permissions, uid, gid, space and inode usage. Other services,
  201. ## such as databases, may depend on this resource and an automatically graceful
  202. ## stop may be cascaded to them before the filesystem will become full and data
  203. ## lost.
  204. #
  205. # check filesystem datafs with path /dev/sdb1
  206. # start program = "/bin/mount /data"
  207. # stop program = "/bin/umount /data"
  208. # if failed permission 660 then unmonitor
  209. # if failed uid root then unmonitor
  210. # if failed gid disk then unmonitor
  211. # if space usage > 80% for 5 times within 15 cycles then alert
  212. # if space usage > 99% then stop
  213. # if inode usage > 30000 then alert
  214. # if inode usage > 99% then stop
  215. # group server
  216. #
  217. check filesystem rootfs with path /
  218. if space usage > 80% for 5 times within 15 cycles then alert
  219. if space usage > 99% then alert
  220. if inode usage > 80% for 5 times within 15 cycles then alert
  221. if inode usage > 99% then alert
  222. group server
  223. #
  224. ## Check a file's timestamp. In this example, we test if a file is older
  225. ## than 15 minutes and assume something is wrong if its not updated. Also,
  226. ## if the file size exceed a given limit, execute a script
  227. #
  228. # check file database with path /data/mydatabase.db
  229. # if failed permission 700 then alert
  230. # if failed uid data then alert
  231. # if failed gid data then alert
  232. # if timestamp > 15 minutes then alert
  233. # if size > 100 MB then exec "/my/cleanup/script" as uid dba and gid dba
  234. #
  235. #
  236. ## Check directory permission, uid and gid. An event is triggered if the
  237. ## directory does not belong to the user with uid 0 and gid 0. In addition,
  238. ## the permissions have to match the octal description of 755 (see chmod(1)).
  239. #
  240. # check directory bin with path /bin
  241. # if failed permission 755 then unmonitor
  242. # if failed uid 0 then unmonitor
  243. # if failed gid 0 then unmonitor
  244. #
  245. #
  246. ## Check a remote host availability by issuing a ping test and check the
  247. ## content of a response from a web server. Up to three pings are sent and
  248. ## connection to a port and an application level network check is performed.
  249. #
  250. # check host myserver with address 192.168.1.1
  251. # if failed icmp type echo count 3 with timeout 3 seconds then alert
  252. # if failed port 3306 protocol mysql with timeout 15 seconds then alert
  253. # if failed url http://user:password@www.foo.bar:8080/?querystring
  254. # and content == 'action="j_security_check"'
  255. # then alert
  256. #
  257. #
  258. ###############################################################################
  259. ## Includes
  260. ###############################################################################
  261. ##
  262. ## It is possible to include additional configuration parts from other files or
  263. ## directories.
  264. #
  265. include /etc/monit/conf.d/*
  266. include /etc/monit/monitrc.d/*