author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Sun, 17 Jan 2021 17:45:23 +0200 | |
changeset 2502 | 45513923d474 |
parent 2412 | d88d5d1a8cd9 |
permissions | -rw-r--r-- |
2410 | 1 |
|
2 |
======= |
|
3 |
monit |
|
4 |
======= |
|
5 |
.. contents:: |
|
6 |
:local: |
|
7 |
||
8 |
Official docs |
|
9 |
============= |
|
10 |
||
11 |
https://mmonit.com/monit/documentation/monit.html |
|
12 |
Main docs. |
|
13 |
https://mmonit.com/wiki/Monit/ConfigurationExamples |
|
14 |
Real-world configuration examples. |
|
15 |
https://mmonit.com/wiki/Monit/FAQ |
|
16 |
FAQ |
|
17 |
||
18 |
Debugging monit |
|
19 |
=============== |
|
20 |
||
21 |
Run standalone:: |
|
22 |
||
23 |
monit -c /path/to/monitrc |
|
24 |
||
25 |
Check syntax:: |
|
26 |
||
27 |
monit -t |
|
28 |
monit -t -c /path/to/monitrc |
|
29 |
||
30 |
Override log file location in config:: |
|
31 |
||
32 |
set log /var/log/monit.log |
|
33 |
||
34 |
or with CLI option:: |
|
35 |
||
36 |
monit -l /var/log/monit.log |
|
37 |
||
38 |
Do not go into background:: |
|
39 |
||
40 |
monit -I |
|
41 |
||
42 |
Make verbose output:: |
|
43 |
||
44 |
monit -v |
|
45 |
monit -vv |
|
46 |
||
47 |
Full length commant may look like:: |
|
48 |
||
49 |
sudo monit -v status |
|
50 |
sudo monit -Iv validate |
|
51 |
sudo monit -Ivv -c /path/to/monitrc |
|
52 |
||
53 |
To debug start/stop scripts write wrapper that redirects STDIO to file:: |
|
54 |
||
55 |
#/bin/sh |
|
56 |
exec 1>my.log |
|
57 |
exec 2>my.log |
|
58 |
echo "$@" |
|
59 |
exec "$@" |
|
2411
417b9ee21460
Fixed RST syntax error.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
2410
diff
changeset
|
60 |
|
2410 | 61 |
Limiting server to ``localhost``:: |
62 |
||
63 |
set httpd port 2812 |
|
64 |
use address localhost |
|
65 |
allow localhost |
|
66 |
allow admin:monit |
|
67 |
||
68 |
Monit modes |
|
69 |
=========== |
|
70 |
||
71 |
* In ``active`` mode (the default), Monit will pro-actively monitor a service and in case of |
|
2412
d88d5d1a8cd9
Fixed RST syntax error.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
2411
diff
changeset
|
72 |
problems raise alerts and/or restart the service. |
2410 | 73 |
* In ``passive`` mode, Monit will passively monitor a service and will raise alerts, but will not |
2412
d88d5d1a8cd9
Fixed RST syntax error.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
2411
diff
changeset
|
74 |
try to fix a problem by executing start, stop or restart. |
2410 | 75 |
* In ``manual`` mode, Monit will enter active mode only if a service was started via Monit. |
76 |
||
77 |
Example:: |
|
78 |
||
79 |
check process App with pidfile /var/run/app.pid |
|
80 |
start program = "/usr/bin/app start" |
|
81 |
stop program = "/usr/bin/app stop" |
|
82 |
mode passive |
|
83 |
||
84 |
Alerting |
|
85 |
======== |
|
86 |
:: |
|
87 |
||
88 |
check process memcached with match memcached |
|
89 |
start program = "/usr/bin/systemctl start memcached" |
|
90 |
stop program = "/usr/bin/systemctl stop memcached" |
|
91 |
if failed host 127.0.0.1 port 11211 protocol MEMCACHE then restart |
|
92 |
if cpu > 70% for 2 cycles then alert |
|
93 |
if cpu > 98% for 5 cycles then restart |
|
94 |
if 2 restarts within 3 cycles then timeout |
|
95 |
||
96 |
check process myapp with pidfile /run/myapp.pid |
|
97 |
if does not exist then alert |
|
98 |
||
99 |
check filesystem Ubuntu with path /dev/sda1 |
|
100 |
if space usage > 90% then alert |
|
101 |
check filesystem Home with path /dev/sda3 |
|
102 |
if space usage > 90% then alert |
|
103 |
||
104 |
check host app_name with address 127.0.0.1 |
|
105 |
start "/sbin/start app_name" |
|
106 |
stop "/sbin/stop app_name" |
|
107 |
if failed port 80 protocol HTTP |
|
108 |
request /ok |
|
109 |
with timeout 5 seconds |
|
110 |
then restart |
|
111 |
||
112 |
Running monit by systemd |
|
113 |
======================== |
|
114 |
:: |
|
115 |
||
116 |
[Unit] |
|
117 |
Description=Pro-active monitoring utility for unix systems |
|
118 |
After=network.target |
|
119 |
Documentation=man:monit(1) https://mmonit.com/wiki/Monit/HowTo |
|
120 |
||
121 |
[Service] |
|
122 |
Type=simple |
|
123 |
KillMode=process |
|
124 |
ExecStart=/usr/local/bin/monit -I |
|
125 |
ExecStop=/usr/local/bin/monit quit |
|
126 |
ExecReload=/usr/local/bin/monit reload |
|
127 |
Restart = on-abnormal |
|
128 |
StandardOutput=null |
|
129 |
||
130 |
[Install] |
|
131 |
WantedBy=multi-user.target |
|
132 |
||
133 |
https://mmonit.com/wiki/Monit/Systemd |
|
134 |
Official docs. |
|
135 |
||
136 |
Monitor systemd process |
|
137 |
======================= |
|
138 |
||
139 |
With pid-file:: |
|
140 |
||
141 |
check process nginx with pidfile /var/run/nginx.pid |
|
142 |
start program = "/bin/systemctl start nginx" |
|
143 |
stop program = "/bin/systemctl stop nginx" |
|
144 |
||
145 |
If process without pid-file:: |
|
146 |
||
147 |
check program MyApp with path "systemctl --quiet is-active MyApp" |
|
148 |
if status != 0 then ... |
|
149 |
||
150 |
There is a way to tell systemd to create pid-file if process doesn't to it itself:: |
|
151 |
||
152 |
ExecStartPost=/bin/sh -c "echo $MAINPID > /run/myapp.pid" |
|
153 |
||
154 |
By matching program name:: |
|
155 |
||
156 |
check process MyApp matching 'myapp.*' |
|
157 |
start program = /bin/app |
|
158 |
stop program = something.. |
|
159 |
||
160 |
Can systemd replace monit? |
|
161 |
========================== |
|
162 |
||
163 |
No. Systemd has only basic check if process is running. Imaging that process is stuck. You need some |
|
164 |
active probes, like HTTP health endpoint. |
|
165 |
||
166 |
Systemd has limited capabilities for notifying with ``OnFailure``:: |
|
167 |
||
168 |
[Service] |
|
169 |
Restart=always |
|
170 |
RestartSecs=30 |
|
171 |
||
172 |
[Unit] |
|
173 |
OnFailure=... |
|
174 |
||
175 |
Reverse proxy for monit |
|
176 |
======================= |
|
177 |
||
178 |
Ngnix:: |
|
179 |
||
180 |
server { |
|
181 |
listen 80; |
|
182 |
server_name my.server.name; |
|
183 |
location /monit/ { |
|
184 |
allow 127.0.0.1; |
|
185 |
allow 192.0.0.0/8; |
|
186 |
deny all; |
|
187 |
||
188 |
proxy_pass http://127.0.0.1:2812; |
|
189 |
proxy_set_header Host $host; |
|
190 |
rewrite ^/monit/(.*) /$1 break; |
|
191 |
proxy_ignore_client_abort on; |
|
192 |
} |
|
193 |
} |
|
194 |