mmonit

在 monit 文件中指定多种邮件格式
mmonit

在 monit 文件中指定多种邮件格式

我有一个很长的 monit 文件,其中包含不同的规则。对于某些规则,我想将一封电子邮件(具有特定格式)发送到多个电子邮件地址。 我想过使用消息格式,但我们的文件中有不同的邮件格式,所以我认为这不会起作用。 目前,我们唯一的“解决方案”是对每个警报重复以下块: check 1 alert [email protected] with mail-format { <FORMAT 1> } alert [email protected] with mail-format { <FORMAT 1> } c...

Admin

Monit 对 mongo http 主机检查出现假阴性
mmonit

Monit 对 mongo http 主机检查出现假阴性

我正在尝试创建一个 monit 配置文件来监视 mongodb 是否正在运行。 这是我的配置文件。 check process mongod with pidfile /var/run/mongodb/mongod.pid group mongodb start program = "/sbin/start mongod" stop program = "/sbin/stop mongod" if failed host 127.0.0.1 port 27017 protocol http and request "/...

Admin

监控中某个进程的 CPU 总数显示错误
mmonit

监控中某个进程的 CPU 总数显示错误

我正在使用 Monit,并且正在监控一些进程。 我有 12 个 vCPU,系统使用率约为 20%。但 M/Monit 显示某些进程已达到 100%。实际上确实如此,但只有一个 CPU。 如何让 M/Monit 正确显示 CPU 使用率?我正在使用“检查进程” check process myprocess with matching myprocess ...

Admin

Apache SSL VHost 代理背后的 M/Monit 中断重定向
mmonit

Apache SSL VHost 代理背后的 M/Monit 中断重定向

我在让 M/Monit 在代理后工作时遇到了一些困难。我尝试将 HTTPS 连接从 https://monit.mydomain.com 代理到 http://monit.realserver.com:8082。 使用以下配置,如果我访问 https://monit.mydomain.com/index.csp 或任何其他有效路径,则一切正常。但是,如果我尝试仅访问 https://monit.mydomain.com 或 https://monit.mydomain.com/,它会重定向到 http://monit.mydomain.com:8082/i...

Admin

Nginx M/Monit 密码保护
mmonit

Nginx M/Monit 密码保护

我正在尝试保护对 M/Monit 网络界面的访问: 盒子: ubuntu 14.04 nginx 1.8.1 mmonit-3.5.1 我在以下位置创建了一个 mmonit 配置文件/etc/nginx/sites-available: server { listen 8080; root /var/www/html; location / { auth_basic "Restricted Content"; auth_basic_user...

Admin

init.d 脚本出现错误
mmonit

init.d 脚本出现错误

首先抱歉我的英语不好 好的,我写了一个 init.d 脚本,但我不知道它是真是假(我对这个还不熟悉) #!/bin/sh . /etc/init.d/someserver start () { echo -n $"Starting someserver.jar: " java -jar /home/someserver/someserver.jar & echo $! > /home/someserver/someserver.pid } stop () { echo -n $"Stopping som...

Admin

Monit:如何检查特定用户执行的程序?
mmonit

Monit:如何检查特定用户执行的程序?

我一直在使用monit/mmonit来监控我的系统。它的一个特点是语法check program,它运行一个程序并验证其返回值: # Asserts that there are more than 40 users in the DEV DB. check program more_than_40_users_in_dev_db with path /home/ubuntu/servers-scripts/monitoring/more_than_40_users_in_dev_db.py with timeout 5 seconds...

Admin