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

linux中Zabbix监控Memcached PHP-FPM Tomcat Nginx MySQL 网站日志

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-22 14:17:29 浏览: 评论:0 

Zabbix是一个linux中常用的监控软件了,我们可以使用Zabbix监控Memcached PHP-FPM Tomcat Nginx MySQL 网站日志了,下面一起来看一个例子哦.

Zabbix作为监控软件非常的灵活,支持的数据类型非常丰富,比如数字(无正负),数字(浮点),日志,文字等,我们需要做的就是使用脚本来收集好数据,然后zabbix收集并画图,设置告警线,这里我们来学习使用Zabbix监控Memcached、PHP-FPM、Tomcat、Nginx、MySQL及网站日志.

Memcached监控,自定义键值:

UserParameter=memcached.stat[*],/data/sh/memcached-status.sh "$1"

memcached-status.sh脚本内容为:

  1. #!/bin/bash 
  2.  
  3. item=$1 
  4. ip=127.0.0.1 
  5. port=11211 
  6. (echo "stats";sleep 0.5) | telnet $ip $port 2>/dev/null | grep "STAT $item\b" | awk '{print $3}' 

导入模板,memcached zabbix模板下载

PHP-FPM监控,配置php-fpm状态页,打开php-fpm.conf配置文件,添加如下配置后重启php:

pm.status_path = /fpm_status

自定义键值:UserParameter=php-fpm[*],/data/sh/php-fpm-status.sh "$1"

php-fpm-status.sh脚本内容:

  1. #!/bin/bash 
  2. ################################## 
  3. # Zabbix monitoring script 
  4. # php-fpm: 
  5. #  - anything available via FPM status page 
  6. ################################## 
  7. # Contact: 
  8. #  vincent.viallet@gmail.com 
  9. ################################## 
  10. # ChangeLog: 
  11. #  20100922        VV        initial creation 
  12. ################################## 
  13.  
  14. # Zabbix requested parameter 
  15. ZBX_REQ_DATA="$1" 
  16.  
  17. # FPM defaults 
  18. URL="http://localhost/fpm_status" 
  19. WGET_BIN="/usr/bin/wget" 
  20.  
  21. # Error handling: 
  22. #  - need to be displayable in Zabbix (avoid NOT_SUPPORTED) 
  23. #  - items need to be of type "float" (allow negative + float) 
  24. ERROR_NO_ACCESS_FILE="-0.9900" 
  25. ERROR_NO_ACCESS="-0.9901" 
  26. ERROR_WRONG_PARAM="-0.9902" 
  27. ERROR_DATA="-0.9903" # either can not connect /        bad host / bad port 
  28.  
  29. # save the FPM stats in a variable for future parsing 
  30. FPM_STATS=$($WGET_BIN -q $URL -O - 2> /dev/null) 
  31.  
  32. # error during retrieve 
  33. if [ $? -ne 0 -o -z "$FPM_STATS" ]; then 
  34.   echo $ERROR_DATA 
  35.   exit 1 
  36. fi 
  37.  
  38. # Extract data from FPM stats 
  39. RESULT=$(echo "$FPM_STATS" | sed -n -r "s/^$ZBX_REQ_DATA: +([0-9]+)/\1/p"
  40. if [ $? -ne 0 -o -z "$RESULT" ]; then 
  41.     echo $ERROR_WRONG_PARAM 
  42.     exit 1 
  43. fi 
  44.  
  45. echo $RESULT 
  46.  
  47. exit 0 

导入模板,php-fpm zabbix模板下载

Tomcat监控,刚开始决定监控Tomcat时,使用的是JMX,不过这货设置太复杂了,而且对防火墙要求还挺高,需要开放几个端口。只好使用Tomcat自带的状态页来监控了。

自定义键值:UserParameter=tomcat.status[*],/data/sh/tomcat-status.py $1

因为需要解析到xml,所以还是决定用python实现比较方便.

  1. /data/sh/tomcat-status.py脚本内容: 
  2. #!/usr/bin/python 
  3. import urllib2 
  4. import xml.dom.minidom 
  5. import sys 
  6.  
  7. url = 'http://127.0.0.1:8080/manager/status?XML=true' 
  8. username = 'username' 
  9. password = 'password' 
  10.  
  11. passman = urllib2.HTTPPasswordMgrWithDefaultRealm() 
  12. passman.add_password(None, url, username, password) 
  13. authhandler = urllib2.HTTPBasicAuthHandler(passman) 
  14. opener = urllib2.build_opener(authhandler) 
  15. urllib2.install_opener(opener) 
  16. pagehandle = urllib2.urlopen(url) 
  17. xmlData = pagehandle.read() 
  18. doc = xml.dom.minidom.parseString(xmlData)  
  19.  
  20. item = sys.argv[1] 
  21.  
  22. if item == "memory.free"
  23. print  doc.getElementsByTagName("memory")[0].getAttribute("free"
  24. elif item == "memory.total"
  25. print  doc.getElementsByTagName("memory")[0].getAttribute("total"
  26. elif item == "memory.max"
  27. print  doc.getElementsByTagName("memory")[0].getAttribute("max"
  28. elif item == "threadInfo.maxThreads"
  29. print  doc.getElementsByTagName("threadInfo")[0].getAttribute("maxThreads"
  30. elif item == "threadInfo.currentThreadCount"
  31. print  doc.getElementsByTagName("threadInfo")[0].getAttribute("currentThreadCount"
  32. elif item == "threadInfo.currentThreadsBusy"
  33. print  doc.getElementsByTagName("threadInfo")[0].getAttribute("currentThreadsBusy"
  34. elif item == "requestInfo.maxTime"
  35. print  doc.getElementsByTagName("requestInfo")[0].getAttribute("maxTime"
  36. elif item == "requestInfo.processingTime"
  37. print  doc.getElementsByTagName("requestInfo")[0].getAttribute("processingTime"
  38. elif item == "requestInfo.requestCount"
  39. print  doc.getElementsByTagName("requestInfo")[0].getAttribute("requestCount"
  40. elif item == "requestInfo.errorCount"
  41. print  doc.getElementsByTagName("requestInfo")[0].getAttribute("errorCount"
  42. elif item == "requestInfo.bytesReceived"
  43. print  doc.getElementsByTagName("requestInfo")[0].getAttribute("bytesReceived"
  44. elif item == "requestInfo.bytesSent"
  45. print  doc.getElementsByTagName("requestInfo")[0].getAttribute("bytesSent")  //phpfensi.com 
  46. else
  47. print "unsupport item." 

这个脚本是监控Tomcat7的,Tomcat6没有试过,应该区别在状态页的url以及管理页面的用户密码设置上,以上脚本可运行需要在tomcat-users.xml里添加用户,至少权限为manager-status.

导入模板:tomcat zabbix模板下载

Nginx监控,配置Nginx状态页,在nginx配置文件server{}中加入:

  1. location /nginx_status { 
  2.     stub_status on; 
  3.     access_log off; 

自定义键值:UserParameter=nginx[*],/data/sh/nginx-status.sh "$1"

nginx-status.sh脚本内容:

  1. #!/bin/bash 
  2. ################################## 
  3. # Zabbix monitoring script 
  4. # nginx: 
  5. #  - anything available via nginx stub-status module 
  6. ################################## 
  7. # Contact: 
  8. #  vincent.viallet@gmail.com 
  9. ################################## 
  10. # ChangeLog: 
  11. #  20100922        VV        initial creation 
  12. ################################## 
  13.  
  14. # Zabbix requested parameter 
  15. ZBX_REQ_DATA="$1" 
  16. ZBX_REQ_DATA_URL="$2" 
  17.  
  18. # Nginx defaults 
  19. URL="http://127.0.0.1/nginx_status" 
  20. WGET_BIN="/usr/bin/wget" 
  21.  
  22. # Error handling: 
  23. #  - need to be displayable in Zabbix (avoid NOT_SUPPORTED) 
  24. #  - items need to be of type "float" (allow negative + float) 
  25. ERROR_NO_ACCESS_FILE="-0.9900" 
  26. ERROR_NO_ACCESS="-0.9901" 
  27. ERROR_WRONG_PARAM="-0.9902" 
  28. ERROR_DATA="-0.9903" # either can not connect /        bad host / bad port 
  29.  
  30. # save the nginx stats in a variable for future parsing 
  31. NGINX_STATS=$($WGET_BIN -q $URL -O - 2> /dev/null) 
  32.  
  33. # error during retrieve 
  34. if [ $? -ne 0 -o -z "$NGINX_STATS" ]; then 
  35.   echo $ERROR_DATA 
  36.   exit 1 
  37. fi 
  38.  
  39. # Extract data from nginx stats 
  40. case $ZBX_REQ_DATA in 
  41.   active_connections)   echo "$NGINX_STATS" | head -1             | cut -f3 -d' ';; 
  42.   accepted_connections) echo "$NGINX_STATS" | grep -Ev '[a-zA-Z]' | cut -f2 -d' ';; 
  43.   handled_connections)  echo "$NGINX_STATS" | grep -Ev '[a-zA-Z]' | cut -f3 -d' ';; 
  44.   handled_requests)     echo "$NGINX_STATS" | grep -Ev '[a-zA-Z]' | cut -f4 -d' ';;   //phpfensi.com 
  45.   reading)              echo "$NGINX_STATS" | tail -1             | cut -f2 -d' ';; 
  46.   writing)              echo "$NGINX_STATS" | tail -1             | cut -f4 -d' ';; 
  47.   waiting)              echo "$NGINX_STATS" | tail -1             | cut -f6 -d' ';; 
  48.   *) echo $ERROR_WRONG_PARAMexit 1;; 
  49. esac 
  50.  
  51. exit 0 

导入模板,nginx zabbix模板下载

MySQL监控:MySQL的监控,zabbix是默认支持的,已经有现成的模板,现成的键值,我们需要做的只是在/var/lib/zabbix里新建一个.my.cnf文件,内容如下:

  1. [client] 
  2. host=127.0.0.1 
  3. port=1036 
  4. user=root 
  5. password=root 

网站日志监控,配置日志格式,我们假设你用的web服务器是Nginx,我们添加一个日志格式,如下:

  1. log_format withHost  '$remote_addr\t$remote_user\t$time_local\t$host\t$request\t' 
  2.                 '$status\t$body_bytes_sent\t$http_referer\t' 
  3.                 '$http_user_agent'; 

我们使用tab作分隔符,为了方便awk识别列的内容,以防出错,然后再设置全局的日志,其它server就不需要设置日志了:

access_log  /data/home/logs/nginx/$host.log withHost;

定时获取一分钟日志,设置一个定时任务:

* * * * * /data/sh/get_nginx_access.sh

脚本内容为:

  1. #!/bin/bash 
  2.  
  3. logDir=/data/home/logs/nginx/ 
  4. logNames=`ls ${logDir}/*.*.log  |awk -F"/" '{print $NF}'
  5.  
  6. for $logName in $logNames; 
  7. do 
  8. #设置变量 
  9. split_log="/tmp/split_$logName" 
  10. access_log="${logDir}/$logName" 
  11. status_log="/tmp/$logName" 
  12.  
  13. #取出最近一分钟日志 
  14. tac $access_log  | awk ' 
  15. BEGIN
  16. FS="\t" 
  17. OFS="\t" 
  18. cmd="date -d \"minute ago\" +%H%M%S" 
  19. cmd|getline oneMinuteAgo 
  20. $3 = substr($3,13,8) 
  21. gsub(":","",$3) 
  22. if ($3>=oneMinuteAgo){ 
  23. print 
  24. else { 
  25. exit; 
  26. }' > $split_log 
  27.  
  28.  
  29. #统计状态码个数 
  30. awk -F'\t' '{ 
  31. status[$4" "$6]++ 
  32. END
  33. for (i in status) 
  34. print i,status[i] 
  35. ' $split_log  > $status_log 
  36. done 

这个定时任务是每分钟执行,因为我们监控的频率是每分钟,添加这个任务是为了取得最近一分钟各域名的日志,以及统计各域名的所有状态码个数,方便zabbix来获取所需的数据.

自定义键值:

  1. UserParameter=nginx.detect,/data/sh/nginx-detect.sh 
  2. UserParameter=nginx.access[*],awk -v sum=0 -v domain=$1 -v code=$2 '{if($$1 == domain && $$2 == code ){sum+=$$3} }END{print sum}' /tmp/$1.log 
  3. UserParameter=nginx.log[*],awk -F'\t' -v domain=$1 -v code=$2 -v number=$3 -v sum=0 -v line="" '{if ($$4 == domain && $$6 == code ){sum++;line=line$$5"\n" }}END{if (sum > number) print line}' /tmp/split_$1.log | sort | uniq -c | sort -nr | head -10 | sed -e 's/^/<p>/' -e 's/$/<\/p>/' 

nginx-detect.sh脚本内容为:

  1. #!/bin/bash 
  2.  
  3. function json_head { 
  4.     printf "{" 
  5.     printf "\"data\":[" 
  6.  
  7. function json_end { 
  8.     printf "]" 
  9.     printf "}" 
  10.  
  11. function check_first_element { 
  12.     if [[ $FIRST_ELEMENT -ne 1 ]]; then 
  13.         printf "," 
  14.     fi 
  15.     FIRST_ELEMENT=0 
  16.  
  17. FIRST_ELEMENT=1 
  18. json_head 
  19.  
  20. logNames=`ls /data/home/logs/nginx/*.*.log |awk -F"/" '{print $NF}'` 
  21. for logName in $logNames; 
  22. do 
  23. while read domain code count;do 
  24.         check_first_element 
  25.         printf "{" 
  26.         printf "\"{#DOMAIN}\":\"$domain\",\"{#CODE}\":\"$code\"" 
  27.         printf "}" 
  28. done < /tmp/$logName 
  29. done 
  30. json_end 

这里我们定义了三个键值,nginx.detect是为了发现所有域名及其所有状态码,nginx.access[*]是为了统计指定域名的状态码的数量,nginx.log[*]是为了测试指定域名的状态码超过指定值时输出排在前十的url,我们监控nginx访问日志用到了zabbix的自动发现功能,当我们增加域名时,不需要修改脚本,zabbix会帮助我们自动发现新增的域名并作监控.

Tags: Zabbix Memcached PHP-FPM

分享到: