zoukankan      html  css  js  c++  java
  • 统计日志10分钟内出现的次数

    #!/bin/bash
    
    logHome=/data/server/tomcats/tomcat7_8180_apiService/logs
    resultLog=/data/shell/result_fetch.out
    cd $logHome
    filelist=`ls $logHome|grep -w FACEBOOK20140723`
    for file in $filelist
    do
     if test -f $file
       then
          echo "$file :" >>$resultLog
          startTime="00:00:00"
          endTime="00:10:00"
         for time in $(seq 1 144)
          do
          taskCounter=`grep 'use local address:' $file|awk '{print $2}'|awk -F "," '{if($1>="'$startTime'"&&$1<"'$endTime'") {print $1}}'|wc -l`
          errorCounter=`grep 'invalid,change token:' $file|awk '{print $2}'|awk -F "," '{if($1>="'$startTime'"&&$1<"'$endTime'") {print $1}}'|wc -l`
            echo "[$startTime~$endTime]:  抓取总数:$taskCounter    重试总次数:$errorCounter" >> $resultLog
            startTime=$endTime
            temp=$(date +%s -d "$startTime")
            temp=$(($temp+10*60))
            endTime=`date +%T -d "1970-01-01 UTC $temp seconds"`
         done
     fi
    done
    #!/bin/bash
    
    logHome=/data/server/tomcats/tomcat7_8380_controlService/logs
    resultLog=/data/shell/result.out
    cd $logHome
    filelist=`ls $logHome|grep FACEBOOK`
    for file in $filelist
    do
     if test -f $file
       then
          echo "$file :" >>$resultLog
          startTime="00:00:00"
          endTime="00:10:00"
         for time in $(seq 1 144)
          do
            taskCounter=`grep 'doSearchTask===>task:' $file|awk '{print $2}'|awk -F "," '{if($1>="'$startTime'" && $1<"'$endTime'") {print $1}}'|wc -l`
            errorCounter=`grep 'OAuthException,code:613' $file|awk '{print $2}'|awk -F "," '{if($1>="'$startTime'" && $1<"'$endTime'") {print $1}}'|wc -l`
            echo "[$startTime~$endTime]:  任务总数:$taskCounter  异常总数:$errorCounter" >> $resultLog
            startTime=$endTime
            temp=$(date +%s -d "$startTime")
            temp=$(($temp+10*60))
            endTime=`date +%T -d "1970-01-01 UTC $temp seconds"`
         done
     fi
    done
  • 相关阅读:
    4组Alpha冲刺2/6
    4组Alpha冲刺1/6
    4组Alpha冲刺3/6
    4组Alpha冲刺3/6
    4组Alpha冲刺4/6
    原创视频作品汇总(更新至2012.8.04)
    PPT全转通2.0发布
    PPT全转通1.3
    [原创]WIN8系统的远程桌面漏洞 利用QQ拼音纯净版实现提权
    原创钢琴曲 《夏季来临之前的歌》
  • 原文地址:https://www.cnblogs.com/cornerxin/p/9300146.html
Copyright © 2011-2022 走看看