使用Monit监控进程与系统状态

2024-05-27 03:52:52

背景介绍:
随着线上服务器数量的增加,各种开源软件和工具的广泛使用,一些服务自动停止或无响应的情况时有发生。
而其中有很大一部分都是由于软件自身的稳定性或者机器硬件资源的限制而造成的,按道理来讲,这些情况都应该设法找到本质原因,然后避免再次出现。

但现实是残酷的,不少软件本身的稳定性有待提升,机器的硬件资源提升会触及成本,因此在集群的环境中,具备冗余,使得执行简单的服务重启成为了最现实的选择。

这本身不是什么困难的事情,实现的方法有很多,比如在Zabbix或Nagios的报警中增加Action或Commands,或自己写脚本放到计划任务中执行都可以。

但本文要介绍的,是专门来做这种事情的一个工具:Monit。
它最大的特点是配置文件简单易读,同时支持进程和系统状态的监控,并灵活的提供了各种检测的方式,周期,并进行报警和响应(重启服务,执行命令等)

系统环境:
OS: CentOS 6.4 x86_64 Minimal

具体配置:
1. 安装EPEL仓库
# yum install http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

2. 安装Monit软件包
# yum install monit

3. 配置Monit通用参数,包括开启HTTP统计界面,邮件报警等
# vim /etc/monit.conf

###############################################################################
## Monit control file
###############################################################################
##
## Comments begin with a '#' and extend through the end of the line. Keywords
## are case insensitive. All path's MUST BE FULLY QUALIFIED, starting with '/'.
##
## Below you will find examples of some frequently used statements. For
## information about the control file and a complete list of statements and
## options, please have a look in the Monit manual.
##
##
###############################################################################
## Global section
###############################################################################
##
## Start Monit in the background (run as a daemon):
#
set daemon 120            # check services at 2-minute intervalswith start delay 60   # optional: delay the first check by 4-minutes (by
#                         # default Monit check immediately after Monit start)
#
#
## Set syslog logging with the 'daemon' facility. If the FACILITY option is
## omitted, Monit will use 'user' facility by default. If you want to log to
## a standalone log file instead, specify the full path to the log file
#
# set logfile syslog facility log_daemon
#
#
### 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/run/monit/.monit.id
#
### 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/run/monit/.monit.state
#
## Set the list of mail servers for alert delivery. Multiple servers may be
## specified using a comma separator. By default Monit uses port 25 - it is
## possible to override this with the PORT option.
#
set mailserver localhost
# set mailserver mail.bar.baz,               # primary mailserver
#                backup.bar.baz port 10025,  # backup mailserver on port 10025
#                localhost                   # fallback relay
#
#
## By default Monit will drop alert events if no mail servers are available.
## If you want to keep the alerts for later delivery retry, you can use the
## EVENTQUEUE statement. The base directory where undelivered alerts will be
## stored is specified by the BASEDIR option. You can limit the maximal queue
## size using the SLOTS option (if omitted, the queue is limited by space
## available in the back end filesystem).
#
set eventqueuebasedir /var/run/monit  # set the base directory where events will be stored
#   slots 100               # optionally limit the queue size
#
#
## Send status and events to M/Monit (for more informations about M/Monit
## see http://mmonit.com/).
#
# set mmonit http://monit:monit@192.168.1.10:8080/collector
#
#
## Monit by default uses the following alert mail format:
##
## --8<--
## From: monit@$HOST                                     # sender
## Subject: Monit Alert - Event:$EVENT Service:$SERVICE  # subject
##
## Event:$EVENT Service:$SERVICE             #
##                                           #
##  Date:        $DATE                   #
##  Action:      $ACTION                 #
##  Host:        $HOST                   # body
##  Description: $DESCRIPTION            #
##                                           #
## Your faithful employee,                   #
## Monit                                     #
## --8<--
##
## You can override this message format or parts of it, such as subject
## or sender using the MAIL-FORMAT statement. Macros such as $DATE, etc.
## are expanded at runtime. For example, to override the sender, use:
#
set mail-format {from: monit@heylinux.comsubject: [$SERVICE] $EVENTmessage:
[$SERVICE] $EVENTDate:        $DATEAction:      $ACTIONHost:        heylinux.comDescription: $DESCRIPTION
Your faithful employee,
Monit }
#
#
## You can set alert recipients whom will receive alerts if/when a
## service defined in this file has errors. Alerts may be restricted on
## events by using a filter as in the second example below.
#
set alert guosuiyu@foxmail.com
# set alert sysadm@foo.bar                       # receive all alerts
# set alert manager@foo.bar only on { timeout }  # receive just service-
#                                                # timeout alert
#
#
## Monit has an embedded web server which can be used to view status of
## services monitored and manage services from a web interface. See the
## Monit Wiki if you want to enable SSL for the web server.
#
set httpd port 2812 anduse address localhost  # only accept connection from localhostallow localhost        # allow localhost to connect to the server and
#     allow admin:monit      # require user 'admin' with password 'monit'
#     allow @monit           # allow users of group 'monit' to connect (rw)
#     allow @users readonly  # allow users of group 'users' to connect readonly
#
#
###############################################################################
## Services
###############################################################################
##
## Check general system resources such as load average, cpu and memory
## usage. Each test specifies a resource, conditions and the action to be
## performed should a test fail.
#
#  check system myhost.mydomain.tld
#    if loadavg (1min) > 4 then alert
#    if loadavg (5min) > 2 then alert
#    if memory usage > 75% then alert
#    if cpu usage (user) > 70% then alert
#    if cpu usage (system) > 30% then alert
#    if cpu usage (wait) > 20% then alert
#
#
## Check a file for existence, checksum, permissions, uid and gid. In addition
## to alert recipients in the global section, customized alert can be sent to
## additional recipients by specifying a local alert handler. The service may
## be grouped using the GROUP option. More than one group can be specified by
## repeating the 'group name' statement.
#
#  check file apache_bin with path /usr/local/apache/bin/httpd
#    if failed checksum and
#       expect the sum 8f7f419955cefa0b33a2ba316cba3659 then unmonitor
#    if failed permission 755 then unmonitor
#    if failed uid root then unmonitor
#    if failed gid root then unmonitor
#    alert security@foo.bar on {
#           checksum, permission, uid, gid, unmonitor
#        } with the mail-format { subject: Alarm! }
#    group server
#
#
## Check that a process is running, in this case Apache, and that it respond
## to HTTP and HTTPS requests. Check its resource usage such as cpu and memory,
## and number of children. If the process is not running, Monit will restart
## it by default. In case the service is restarted very often and the
## problem remains, it is possible to disable monitoring using the TIMEOUT
## statement. This service depends on another service (apache_bin) which
## is defined above.
#
#  check process apache with pidfile /usr/local/apache/logs/httpd.pid
#    start program = "/etc/init.d/httpd start" with timeout 60 seconds
#    stop program  = "/etc/init.d/httpd stop"
#    if cpu > 60% for 2 cycles then alert
#    if cpu > 80% for 5 cycles then restart
#    if totalmem > 200.0 MB for 5 cycles then restart
#    if children > 250 then restart
#    if loadavg(5min) greater than 10 for 8 cycles then stop
#    if failed host www.tildeslash.com port 80 protocol http
#       and request "/somefile.html"
#       then restart
#    if failed port 443 type tcpssl protocol http
#       with timeout 15 seconds
#       then restart
#    if 3 restarts within 5 cycles then timeout
#    depends on apache_bin
#    group server
#
#
## Check filesystem permissions, uid, gid, space and inode usage. Other services,
## such as databases, may depend on this resource and an automatically graceful
## stop may be cascaded to them before the filesystem will become full and data
## lost.
#
#  check filesystem datafs with path /dev/sdb1
#    start program  = "/bin/mount /data"
#    stop program  = "/bin/umount /data"
#    if failed permission 660 then unmonitor
#    if failed uid root then unmonitor
#    if failed gid disk then unmonitor
#    if space usage > 80% for 5 times within 15 cycles then alert
#    if space usage > 99% then stop
#    if inode usage > 30000 then alert
#    if inode usage > 99% then stop
#    group server
#
#
## Check a file's timestamp. In this example, we test if a file is older
## than 15 minutes and assume something is wrong if its not updated. Also,
## if the file size exceed a given limit, execute a script
#
#  check file database with path /data/mydatabase.db
#    if failed permission 700 then alert
#    if failed uid data then alert
#    if failed gid data then alert
#    if timestamp > 15 minutes then alert
#    if size > 100 MB then exec "/my/cleanup/script" as uid dba and gid dba
#
#
## Check directory permission, uid and gid.  An event is triggered if the
## directory does not belong to the user with uid 0 and gid 0.  In addition,
## the permissions have to match the octal description of 755 (see chmod(1)).
#
#  check directory bin with path /bin
#    if failed permission 755 then unmonitor
#    if failed uid 0 then unmonitor
#    if failed gid 0 then unmonitor
#
#
## Check a remote host availability by issuing a ping test and check the
## content of a response from a web server. Up to three pings are sent and
## connection to a port and an application level network check is performed.
#
#  check host myserver with address 192.168.1.1
#    if failed icmp type echo count 3 with timeout 3 seconds then alert
#    if failed port 3306 protocol mysql with timeout 15 seconds then alert
#    if failed url http://user:password@www.foo.bar:8080/?querystring
#       and content == 'action="j_security_check"'
#       then alert
#
#
###############################################################################
## Includes
###############################################################################
##
## It is possible to include additional configuration parts from other files or
## directories.
#
#  include /etc/monit.d/*
#
#
# Include all files from /etc/monit.d/
include /etc/monit.d/*

4. 举例配置针对Nginx,PHP-FPM,MySQL以及根分区用量的监控
在步骤3的配置文件中,可以看到在已经注释的代码中有很多的配置示例,这些足够我们用来参考了。
这里,给大家分享一下我在自己的VPS中所创建的相关监控项:
# vim /etc/monit.d/nginx

1 check process nginx with pidfile /webserver/nginx/run/nginx.pid
2 start program = "/webserver/init.d/nginx start"with timeout 10 seconds
3 stop program  = "/webserver/init.d/nginx stop"
4 iffailed host heylinux.com port 80 protocol http
5 with timeout 10 seconds
6 thenrestart
7 if3 restarts within 5 cycles thentimeout
8 group webserver

# vim /etc/monit.d/php-fpm

1 check process php-fpm with pidfile /webserver/php/logs/php-fpm.pid
2 start program = "/webserver/init.d/php-fpm start"with timeout 10 seconds
3 stop program  = "/webserver/init.d/php-fpm stop"
4 ifcpu > 80% for5 cycles thenrestart
5 ifloadavg(5min) greater than 4 for5 cycles thenrestart
6 if3 restarts within 5 cycles thentimeout
7 group webserver

# vim /etc/monit.d/mysql

1 check process mysql with pidfile /webserver/mysql/run/mysqld.pid
2 start program = "/webserver/init.d/mysqld start"with timeout 10 seconds
3 stop program  = "/webserver/init.d/mysqld stop"
4 iffailed port 3306 protocol mysql
5 with timeout 10 seconds
6 thenrestart
7 if3 restarts within 5 cycles thentimeout
8 group webserver

# vim /etc/monit.d/rootfs

1 check filesystem rootfs with path /dev/xvde
2 ifspace usage > 80% for5 timeswithin 15 cycles thenalert
3 group os

5. 启动Monit
# mkdir /var/run/monit
# /etc/init.d/monit start

6. 模拟Nginx进程故障,测试Monit响应行为与报警
停止Nginx进程
# /webserver/init.d/nginx stop
# /webserver/init.d/nginx status

1 nginx is stopped

观察日志输出
# tailf /var/log/monit

1 [CST Apr 12 01:11:55] error    : skipping /var/run/monit/.monit.id- unknown dataformat
2 [CST Apr 12 01:11:55] error    : Aborting event /var/run/monit/.monit.state - invalid size 5
3 [CST Apr 12 01:41:56] error    : 'nginx'process is not running
4 [CST Apr 12 01:41:56] info     : 'nginx'trying to restart
5 [CST Apr 12 01:41:56] info     : 'nginx'start: /webserver/init.d/nginx

检查Nginx是否被Monit启动
# /webserver/init.d/nginx status

1 nginx (pid 22419 22417) is running...

查看所收到的邮件,总共有两封
monit_email_1.jpg

提示服务异常的邮件
monit_email_b.jpg

提示服务恢复的邮件
monit_email_c.jpg

查看Monit所有监控项的状态
# monit status

01 The Monit daemon 5.1.1 uptime: 1h 8m
02
03 Filesystem 'rootfs'
04 status                            accessible
05 monitoring status                 monitored
06 permission                        660
07 uid                               0
08 gid                               6
09 filesystem flags                  0x1000
10 block size                        4096 B
11 blocks total                      2580302 [10079.3 MB]
12 blocks freefornon superuser     1800023 [7031.3 MB] [69.8%]
13 blocks freetotal                 1931088 [7543.3 MB] [74.8%]
14 inodes total                      655360
15 inodes free607619 [92.7%]
16 data collected                    Sat Apr 12 02:17:58 2014
17
18 Process 'php-fpm'
19 status                            running
20 monitoring status                 monitored
21 pid                               13768
22 parent pid                        1
23 uptime                            6h 14m
24 children                          5
25 memory kilobytes                  3124
26 memory kilobytes total            220032
27 memory percent                    0.5%
28 memory percent total              36.3%
29 cpu percent                       0.0%
30 cpu percent total                 5.8%
31 data collected                    Sat Apr 12 02:17:58 2014
32
33 Process 'nginx'
34 status                            running
35 monitoring status                 monitored
36 pid                               22417
37 parent pid                        1
38 uptime                            36m
39 children                          1
40 memory kilobytes                  1244
41 memory kilobytes total            29256
42 memory percent                    0.2%
43 memory percent total              4.8%
44 cpu percent                       0.0%
45 cpu percent total                 0.0%
46 port response time0.144s to heylinux.com:80 [HTTP via TCP]
47 data collected                    Sat Apr 12 02:17:58 2014
48
49 Process 'mysql'
50 status                            running
51 monitoring status                 monitored
52 pid                               21502
53 parent pid                        21026
54 uptime                            1h 13m
55 children                          0
56 memory kilobytes                  44988
57 memory kilobytes total            44988
58 memory percent                    7.4%
59 memory percent total              7.4%
60 cpu percent                       0.2%
61 cpu percent total                 0.2%
62 port response time0.001s to localhost:3306 [MYSQL via TCP]
63 data collected                    Sat Apr 12 02:17:58 2014
64
65 System 'ec2-tokyo.localdomain'
66 status                            running
67 monitoring status                 monitored
68 load average                      [0.12] [0.08] [0.03]
69 cpu                               5.9%us 0.5%sy 0.4%wa
70 memory usage                      314260 kB [51.9%]
71 data collected                    Sat Apr 12 02:17:58 2014


转载于:https://blog.51cto.com/zhangyc/1399730

使用Monit监控进程与系统状态相关推荐

  1. linux进程监控monit,教你使用monit监控Linux系统

    Monit 是用于对系统中的进程.文件.目录.以及设备等进行监视和管理的工具.当你所指定的server宕机或者没有反应,monit会将该进程杀死并重启该server.并通过邮件进行通知.Monit 包 ...

  2. Linux系统状态检测及进程控制--2

    Linux系统状态检测及进程控制--1(http://crushlinux.blog.51cto.com/2663646/836481) 4.僵死(进程已终止,但进程描述符存在,直到父进程调用wait ...

  3. linux进程看门狗使用方式,Linux系统中基于看门狗的精细化进程监控方法及系统的制作方法...

    Linux系统中基于看门狗的精细化进程监控方法及系统的制作方法 [技术领域] [0001] 本发明涉及Linux系统的进程监控技术领域,特别是涉及一种Linux系统中基于看 门狗的精细化进程监控方法及 ...

  4. Linux日常运维管理技巧(一)监控系统状态、监控网卡流量、监控IO性能、查看系统进程、查看网络状态、Linux下抓包tcpdump、Linux网络相关、DNS配置

    目录 监控系统状态 监控网卡流量 监控IO性能 查看系统进程 查看网络状态 Linux下抓包 Linux网络相关 监控系统状态 w/uptime查看系统负载 [root@zyshanlinux-01 ...

  5. linux jar运行监控 mo,linux系统监控利器--monit

    Monit 是用于对系统中的进程.文件.目录.以及设备等进行监视和管理的工具.当你所指定的server宕机或者没有反应,monit会将该进程杀死并重启该server.并通过邮件进行通知.Monit 包 ...

  6. 监控Linux系统状态的命令

    监控Linux系统状态的命令1 :w uptime命令查看系统负载 : w/uptime 最后面三个数字表示1分钟 ,5分钟 ,15分钟 平均有多少进程占用CPU 某一时刻1颗CPU只能有一个进程在使 ...

  7. 监控linux系统状态

    监控linux系统状态 监控介绍 安装zabbix4.0 监控客户机 解决中文名称不能写数据库的问题 解决图形中乱码 zabbix邮件告警 zabbix监控Nginx zabbix监控Tomcat z ...

  8. Linux实操-网络配置、进程管理、服务管理、动态监控进程、监控网络状态

    网络配置 网络配置原理图 查看网络IP和网关 查看虚拟网络编辑器 修改虚拟网卡ip地址 查看网关 linux网络环境配置 第一种方法(自动获取) 第二种方法(指定固定的 ip) 进程管理(重点) 显示 ...

  9. Linux:动态监控进程+监控网络状态

    1.动态监控进程: 当前时间 系统运行时间 用户数量 负载值(三个值的和/3如果大于0.7,则负载过大:否则负载还行) Tasks:任务数. running是正在运行的任务数 zombie是僵死进程( ...

最新文章

  1. 获取二叉树的所有叶子节点、获取全树深度与左右子树深度求解:递归
  2. Python3 中 爬网页 \uxxx 问题
  3. iterparse中的events参数start和end的用法
  4. 见鬼了,VS2005发布站点不会把Global.asax复上。
  5. SQLite注意以下几点
  6. uniapp一键登陆(php)
  7. php的old函数,laravel单元测试之phpUnit中old()函数报错解决
  8. git回退历史版本无法上传_Git系列教程(二):版本库中添加文件、版本回退
  9. Vue:You may use special comments to disable some warnings.
  10. 大数据的十大应用领域
  11. CSS设置字体大小、字体粗细、字体风格
  12. 有什么适合做移动端的报表工具
  13. Java第一周总结1016
  14. c语言提供了三种预处理命令,C语言提供的三种预处理命令
  15. Linux (centos7)安装字体
  16. NYOJ 304 节能(DP)
  17. 邮件中的html和浏览器不一样,HTML在浏览器中呈现良好,但在电子邮件中呈现不好(HTML是使用dataframe生成的)...
  18. 关于UDP双向通信原理解释与范例
  19. Centos7:您可以尝试添加 --skip-broken 选项来解决该问题
  20. 校内网明年将与QQ平分秋色

热门文章

  1. 在线手机号码VCF批量导入工具
  2. linux防止文件和目录被意外删除或修改
  3. 《中国人工智能学会通讯》——11.34 基于近似动态规划的优化控制研究及 在电力系统中的应用...
  4. 2017年商业智能的6大趋势
  5. java_object的具体使用--上帝
  6. EC地图编辑器(预览版)
  7. seleuium 禁止检测_如何突破网站对selenium的屏蔽
  8. 派克dselite调试软件安装_派克ETH电动缸的新专利减少了调试和维护时间
  9. 为什么用jdbc插入数据为空_为什么气象数据推荐用 ModelWhale 处理
  10. 求两条轨迹间的hausdorff距离_干货 | 轨迹方程问题?两招咔嚓!