每日一shell统计站点的IP和PV

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每日一shell统计站点的IP和PV相关的知识,希望对你有一定的参考价值。

通过nginx日志文件统计出所有的IP和PV,列出排名前10的IP,以confluence知识库系统为例:

nginx日志文件为/var/log/nginx/access.log

# wc -l /var/log/nginx/access.log 
95146 /var/log/nginx/access.log

shell脚本:

# vim accessnum.sh 
#!/bin/bash
#writen by Gavin Zhao
#This shell will print how many users access your server by web
awk ‘/itks/ {print $1}‘ /var/log/nginx/access.log | sort -rn | uniq -c | sort -rn | awk ‘{$2 ~ /10./ && $2!="10.1.46.189" && (tot=to
t+$0)};END{print NR,tot}‘  > /root/script/num.txt 2> /dev/null
ip=`awk ‘{print $1}‘ /root/script/num.txt`
pv=`awk ‘{print $2}‘ /root/script/num.txt`
echo "截止到目前IT知识库的总访问量:$pv"
echo "截止到目前IT知识库的总访问IP数:$ip"
echo "排名前10的IP如下:"
awk ‘/itks/ {print $1}‘ /var/log/nginx/access.log | sort -rn | uniq -c | sort -rn | awk ‘ $2 ~ /10./ && $2 !~ /10.1.46.189|10.1.116.
4/ && NR<=12 {print $2}‘
chmod +x accessnum.sh

技术分享图片

以上是关于每日一shell统计站点的IP和PV的主要内容,如果未能解决你的问题,请参考以下文章

每日一shell日志IP统计排序

怎样统计分析CSDN博客流量

性能测试基础知识-PV和UV

什么是PV和UV?

什么是PV和UV?

Redis站点流量统计HyperLogLog