当前位置:首页 > linux教程 > 列表

分享一个VPS系统监控资源的脚本

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-21 09:33:35 浏览: 评论:0 

以下是本人自己民写的一个Shell脚本,可以监控使用的VPS的CPU、Load、Memory、网络传输、网站能否打开等情况,感觉挺有用的,现在分享出来给需要的朋友.

几个月前开始使用VPS,每月限制300GB流量,流量方便基本够用了,但是有时候由于受到一些恶意访问,导致CPU、Memory等资源消耗较大,导致VPS上的博客网站响应时间太慢甚至有时根本无法打开网页,所以,我简单做了个脚本来进行监控和发邮件报警.

由于不是做很专业的运维,暂时不想上很专业的监控工具,如:Nagios、Puppet、Cacti、Zabbix等,所以自己手动了个Shell脚本来监控我关心的CPU、Load、Memory、网络传输、博客网站能否打开等内容,将该监控脚本分享如下:

https://github.com/smilejay/shell/blob/master/sh2013/vps_monitor.sh,代码如下:

  1. #!/bin/bash 
  2. #set -x 
  3. # the script to monitor my VPS 
  4. # It will alert when memory, load, CPU%, networking, httpd/mysqld or home-page 
  5. is in an abnormal state. 
  6. # author: Jay 
  7. date: 2013-10-16 
  8.  
  9. EMAIL="smile665@gmail.com" 
  10. WARN_MSG="" 
  11.  
  12. # alert when free memory is less than 50 MB 
  13. function mem_free() 
  14.         threshold=50 # 50 MB free memory 
  15.         free_mem=$(free -m | grep "buffers/cache" | awk '{print $4}'
  16.         if [ $free_mem -lt $threshold ]; then 
  17.                 WARN_MSG=$WARN_MSG"Free memeory is less than $threshold MB.n" 
  18.                 return 1 
  19.         fi 
  20.         return 0 
  21.  
  22. # alert when load (5min) is larger than 4 
  23. function load_avg() 
  24.         threshold=4 # load is 4 
  25.         load_5min=$(cat /proc/loadavg | awk '{print $2}'
  26.         if [ $(echo "$load_5min > $threshold" | bc) -eq 1 ]; then 
  27.         WARN_MSG=$WARN_MSG"5min average load is larger than $threshold.n" 
  28.                 return 1 
  29.         fi 
  30.         return 0 
  31.  
  32. # alert when CPU idle% is less than 20% 
  33. function cpu_idle() 
  34.         threshold=20 # CPU idle% 20% 
  35.         cpu_idle=$(sar 1 5 | grep -i 'Average' | awk '{print $NF}'
  36.         if [ $(echo "$cpu_idle < $threshold" | bc) -eq 1 ]; then 
  37.                 # in printf cmd, %% represents a single % 
  38.                 WARN_MSG=$WARN_MSG"CPU idle%% is less than $threshold%%.n" 
  39.                 return 1 
  40.         fi 
  41.         return 0 
  42.  
  43. # alert when networking tx speed is larger than 80 kB/s 
  44. function network_tx() 
  45.         threshold=80 # TX speed 80 kB/s 
  46.         interface=eth0 
  47.         tx_speed=$(sar -n DEV 10 5 | grep "Average" | grep "$interface" | awk '{print $6}'
  48.         if [ $(echo "$tx_speed > $threshold" | bc) -eq 1 ]; then 
  49.                 WARN_MSG=$WARN_MSG"networking TX speed is larger than $threshold kB/s.n" 
  50.                 return 1 
  51.         fi 
  52.         return 0 
  53.  
  54. # alert when httpd or mysqld process doesn't exist 
  55. function httpd_mysqld() 
  56.         ps -ef | grep 'httpd' | grep -v 'grep' 
  57.         if [ $? -ne 0 ]; then 
  58.                 WARN_MSG=$WARN_MSG"httpd process doesn't exist.n" 
  59.                 return 1 
  60.         else 
  61.                 ps -ef | grep 'mysqld' | grep -v 'grep' 
  62.                 if [ $? -ne 0 ]; then 
  63.                         WARN_MSG=$WARN_MSG"mysqld process doesn't exist.n" 
  64.                         return 1 
  65.                 fi 
  66.         fi 
  67.         return 0 
  68.  
  69. # alert when 'Stay hungry' doesn't exist in the home page http://smilejay.com/ 
  70. function home_page() 
  71.         url=http://smilejay.com/ 
  72.         keywords="Stay hungry" 
  73.         curl -sL $url | grep -i "$keywords" 
  74.         if [ $? -ne 0 ]; then 
  75.                 WARN_MSG=$WARN_MSG"keywords '$keywords' doesn't exist on link $url.n"  --phpfensi.com 
  76.                 return 1 
  77.         fi 
  78.         return 0 
  79.  
  80. # use an array to store the return value of each monitoring function 
  81. mem_free 
  82. chk[1]=$? 
  83. load_avg 
  84. chk[2]=$? 
  85. cpu_idle 
  86. chk[3]=$? 
  87. network_tx 
  88. chk[4]=$? 
  89. httpd_mysqld 
  90. chk[5]=$? 
  91. home_page 
  92. chk[6]=$? 
  93.  
  94. # send warning email to the web master if any of the check fails. 
  95. for i in $(seq 1 6) 
  96. do 
  97.         if [ ${chk[i]} -ne 0 ]; then 
  98.                 printf "$WARN_MSG" | mailx -s "Warning from smilejay.com" $EMAIL 
  99.                 exit 1 
  100.         fi 
  101. done

Tags: VPS系统监控 VPS监控脚本

分享到: