Difference between revisions of "Monit"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[wikipedia:Monit|Monit]] is a free, open-source process supervision tool for Unix and Linux. Monit can restart a process automatically if process dies or monitor [[process]] characteristics, such as memory or cpu cycles and alert or execute and action. Monit only support [[alert messages]] by email<ref>https://mmonit.com/monit/documentation/monit.html#ALERT-MESSAGES</ref>.
 
[[wikipedia:Monit|Monit]] is a free, open-source process supervision tool for Unix and Linux. Monit can restart a process automatically if process dies or monitor [[process]] characteristics, such as memory or cpu cycles and alert or execute and action. Monit only support [[alert messages]] by email<ref>https://mmonit.com/monit/documentation/monit.html#ALERT-MESSAGES</ref>.
 +
Monit support monitoring [[cpu]], [[memory]], [[swap]] usage and [[loadavg]] among others.
  
  
 
+
== Installation ==
 
* Installation [[macOS]]: <code>brew install monit</code>
 
* Installation [[macOS]]: <code>brew install monit</code>
 
* Linux: <code>[[apt install monit]]</code>
 
* Linux: <code>[[apt install monit]]</code>
Line 17: Line 18:
  
  
 +
== Example ==
 +
<code>[[/etc/monit/monitrc]]</code>
 +
#  check system $HOST
 +
#    if [[loadavg]] (1min) per core > 2 for 5 cycles then alert
 +
#    if loadavg (5min) per core > 1.5 for 10 cycles then alert
 +
#    if cpu usage > 95% for 10 cycles then alert
 +
#    if memory usage > 75% then alert
 +
#    if [[swap]] usage > 25% then alert
  
 
== Related commands ==
 
== Related commands ==

Latest revision as of 07:48, 21 April 2021

Monit is a free, open-source process supervision tool for Unix and Linux. Monit can restart a process automatically if process dies or monitor process characteristics, such as memory or cpu cycles and alert or execute and action. Monit only support alert messages by email[1]. Monit support monitoring cpu, memory, swap usage and loadavg among others.


Installation[edit]


set daemon 120 By default configured to check services every 120 seconds
Review examples: https://mmonit.com/wiki/Monit/ConfigurationExamples
  • Logs: /var/log/monit.log
  • Command: monit status
  • Restart Monit service: systemctl restart monit.service && systemctl status monit


Example[edit]

/etc/monit/monitrc

#  check system $HOST
#    if loadavg (1min) per core > 2 for 5 cycles then alert
#    if loadavg (5min) per core > 1.5 for 10 cycles then alert
#    if cpu usage > 95% for 10 cycles then alert
#    if memory usage > 75% then alert
#    if swap usage > 25% then alert

Related commands[edit]

See also[edit]

  • https://mmonit.com/monit/documentation/monit.html#ALERT-MESSAGES
  • Advertising: