十五年测试老手,长期负责WEB\APP 项目测试,目前主要负责团队管理工作。

【转】awk分析nginx日志,获取pv

上一篇 / 下一篇  2011-06-14 13:49:15 / 个人分类:nginx

最近在深入系统运维的事情,从服务器配置、调优、维护,到各种脚本编写。实现自动化智能运维的目标还要很远。

(mYU|!K5ys5p!Z-s_0

nginx日志中分析每日有效的pv和各搜索引擎爬虫的请求数。脚本用awk实现。51Testing软件测试网 hfdR(`3I

函数库文件 stat_func.sh

}!g+Uw@'HGu0

3A0? xG0G0
  1. #!/bin/bash  
  2. stat_log_path=/usr/local/qqsa/result  
  3. stat_nginx_log()  
  4. {  
  5.     local basename=`basename $1`  
  6.     local newfile="${stat_log_path}/${basename%%.*}.pv.`date +'%Y-%m-%d'`"  
  7.     awk -F\" '  
  8.     {  
  9.     if( $2 ~ /css|txt|ico/ ) res["static"]++;  
  10.     else if ( $6 ~ /Baiduspider/ ) {res["baidu"]++;res["spider"]++;}  
  11.     else if ( $6 ~ /Googlebot/ ) {res["google"]++;res["spider"]++;}  
  12.     else if ( $6 ~ /Yahoo! Slurp/) {res["yahoo"]++;res["spider"]++;}  
  13.     else if ( $6 ~ /Sogou web spider/) {res["sogou"]++;res["spider"]++;}  
  14.     else if ( $6 ~ /Sosospider/) {res["soso"]++;res["spider"]++;}  
  15.     else if ( $6 ~ /YodaoBot/) {res["youdao"]++;res["spider"]++;}  
  16.     else if ( $6 ~ /msnbot/) {res["msnbot"]++;res["spider"]++;}  
  17.     else if ( $6 ~ /iaskspider/) {res["sina"]++;res["spider"]++;}  
  18.     else res["good"]++;  
  19.     }  
  20.     END {  
  21.     for(item in res) print item ":" res[item]   
  22.     }' $1 > $newfile  
  23. }  
 51Testing软件测试网\8o(`.rG

a Nz4T'q&zs0

执行文件 stat_every_day.sh51Testing软件测试网3f,F ca h D$B

51Testing软件测试网0H V&d6v0z)gt

  1. #!/bin/bash  
  2. . ./stat_func.sh  
  3. date=`date +'%Y-%m-%d'`  
  4. find /data/cs_log_backup/${date} -name "*.access.*" | \  
  5. while read file  
  6. do  
  7.     $( stat_nginx_log "$file" )  
  8. done  
 

d"@4]h$@7Z0

h~s%^ ?w0

crontab -e

x{8~/q mg0

最下面增加一行

c/}_b&D@&^*l'Qy7J0

00 3 * * * /usr/local/maintain/stat_every_day.sh > /dev/null 2 >& 151Testing软件测试网C)`8Z?1y RS9C4@:I D

参考文献:

!Lt9@k5Bv@ z0

http://tech.foolpig.com/2008/07/09/linux-shell-char/    shell字符串的截取

1e5n!exa6H0

http://storysky.blog.51cto.com/628458/270671  用AWK来过滤nginx日志中的特定值

+n Jl syc(R;W3N3A&M0

http://storysky.blog.51cto.com/628458/271560  用SED+AWK来分析NGINX日志51Testing软件测试网EUBz uxJZ

http://book.douban.com/subject/1236944/   sed与awk  

OY ?*r7ub*F+p8r0

TAG: awk nginx Nginx

 

评分:0

我来说两句

Open Toolbar