码迷,mamicode.com
首页 > 其他好文 > 详细

nginx-日志统计

时间:2018-01-18 13:30:07      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:grep   bash   gre   time   top   点击   ip访问   ##   echo   

#!/bin/bash

fd=/tmp/log
# pv 点击量
echo "###################点击量 --$pv-- #########################" >> ${fd}tongji.txt
pv=`cat ${fd}a.log | wc -l`
echo "*************************************************************************************" >> ${fd}tongji.txt
#ip
echo "###################IP访问量 --$pv-- #########################" >> ${fd}tongji.txt
ip=`cat a.log |awk ‘{print $1}‘|sort -k1 -r |uniq -c |sort -n -k1 -r|head -10`
echo $ip >> ${fd}tongji.txt
echo "*************************************************************************************" >> ${fd}tongji.txt
# 请求时间、url、耗时,前10名
echo "###################请求时间、url、耗时,前10名 #########################" >> ${fd}tongji.txt
#`cat ${fd}a.log | awk ‘{print $4,$7,$NF}‘ | awk -F ‘"‘ ‘{print $1,$2,$3}‘ | sort -k3 -rn | head -10` >> ${fd}tongji.txt
top=`cat a.log | awk ‘{print $4,$7,$NF}‘| awk -F ‘"‘ ‘{print $1,$2,$3}‘| sort -k3 -rn |grep -vE ‘timed|jpg|png|js|css|html|gif|bmp‘ |head -10`
echo $top >> ${fd}tongji.txt
echo "*************************************************************************************" >> ${fd}tongji.txt
#echo $top10 >> ${fd}tongji.txt

nginx-日志统计

标签:grep   bash   gre   time   top   点击   ip访问   ##   echo   

原文地址:https://www.cnblogs.com/kuku0223/p/8309439.html

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