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
  • 相关阅读:
    【2021-03-31】人生十三信条
    【2021-03-30】证明自己是人类忠实的朋友
    【2021-03-29】万物本是无序
    缀点成线
    1比特与2比特字符
    Solution -「LOCAL」「cov. 牛客多校 2020 第三场 I」礼物
    Solution -「HNOI 2007」「洛谷 P3185」分裂游戏
    Solution -「CF 1372E」Omkar and Last Floor
    Solution -「POJ 3710」Christmas Game
    Solution -「CF 1380F」Strange Addition
  • 原文地址:https://www.cnblogs.com/cornerxin/p/9300146.html
Copyright © 2011-2022 走看看