码迷,mamicode.com
首页 > 系统相关 > 详细

shell 脚本分析Nginx 日志

时间:2015-05-18 21:01:53      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:shell 分析nginx log

本脚本分析Nginx 负载均衡器的日志:

#!/bin/bash

if [ $# -eq 0 ]; then
    echo "Error:please specify logfile."
    exit 0
else
    LOG=$1
fi

if [ ! -f $1 ]; then
    echo "Sorry,sir. I cat‘t find this apache log file, pls try again!"
    exit 0
fi

##########################################
echo "Most of the IP:"
echo "-----------------------------------"
awk ‘{ print $1 }‘ $LOG|sort |uniq -c |sort -nr |head -10
echo
echo
##########################################
echo "Most of the time:"
echo "-----------------------------------"
awk ‘{ print $4 }‘ $LOG|cut -c 14-18 |sort |uniq -c |sort -nr |head -10

echo
echo
#########################################
echo "Most of the page:"
echo "-----------------------------------"
awk ‘{ print $11 }‘ $LOG |sed ‘s/^.*\\(.cn*\\) \"/\\1/g‘ |sort |uniq -c |sort -rn |head -10
echo
echo
########################################
echo "Most of the time /Most of the ip:"
echo "-----------------------------------"
awk ‘{ print $4 }‘ $LOG |cut -c 14-18 |sort -n |uniq -c |sort -nr |head -10 >timelog

for i in `awk ‘{ print $2 }‘ timelog`
do
    num=`grep $i timelog |awk ‘{ print $1 }‘`
    echo " $i $num"
    ip=`grep $i $LOG|awk ‘{ print $1 }‘ |sort -n | uniq -c |sort -nr |head -10`
    echo "$ip"
    echo
done
rm -f timelog


本文出自 “Smurf Linux运维” 博客,请务必保留此出处http://jin771998569.blog.51cto.com/2147853/1652445

shell 脚本分析Nginx 日志

标签:shell 分析nginx log

原文地址:http://jin771998569.blog.51cto.com/2147853/1652445

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!