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

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

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

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

8~7H"o!e|"Xn I0

nginx日志中分析每日有效的pv和各搜索引擎爬虫的请求数。脚本用awk实现。

F7NH&?|#K'k6r0

函数库文件 stat_func.sh

Ro n7_'R0

51Testing软件测试网9O.B5m2} N

  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软件测试网:d)mqt J

51Testing软件测试网8^;F4\B5K!~`%f0lB

执行文件 stat_every_day.sh

c`puJ)X%Ury0

51Testing软件测试网`s;NU$}%xp

  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  
 51Testing软件测试网`/AC;MU,xD(F

51Testing软件测试网;j1Da@.Xz2E.}iGM#B g

crontab -e51Testing软件测试网"~ Ca`$`zX

最下面增加一行

.u c@@"G t0

00 3 * * * /usr/local/maintain/stat_every_day.sh > /dev/null 2 >& 1

_Wta2[0

参考文献:

N`pR!y#]}0

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

0JB4{R i"a0

http://storysky.blog.51cto.com/628458/270671  用AWK来过滤nginx日志中的特定值51Testing软件测试网O ub2s&? M-H

http://storysky.blog.51cto.com/628458/271560  用SED+AWK来分析NGINX日志

2l$D(WNG |Do'j ug0

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

kF},py#}!H0

TAG: awk nginx Nginx

 

评分:0

我来说两句

Open Toolbar