nginx 查看每秒有多少访问量

Posted 规格严格-功夫到家-哈工大威海人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 查看每秒有多少访问量相关的知识,希望对你有一定的参考价值。

nginx访问量统计

1.根据访问IP统计UV

awk ‘{print $1}‘  access.log|sort | uniq -c |wc -l

2.统计访问URL统计PV

awk ‘{print $7}‘ access.log|wc -l

3.查询访问最频繁的URL

awk ‘{print $7}‘ access.log|sort | uniq -c |sort -n -k 1 -r|more

4.查询访问最频繁的IP

awk ‘{print $1}‘ access.log|sort | uniq -c |sort -n -k 1 -r|more

5.根据时间段统计查看日志

 cat  access.log| sed -n ‘/14\/Mar\/2015:21/,/14\/Mar\/2015:22/p‘|more


http://blog.csdn.net/lupeng0206/article/details/59105790

以上是关于nginx 查看每秒有多少访问量的主要内容,如果未能解决你的问题,请参考以下文章

nginx 限制ip请求某个url的频率

根据apache访问日志怎么计算出每秒的并发数

Nginx 优化

Nginx 优化

分析APACHE NGINX的LOG

nginx优化