nginx access.log影响访问速度吗

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx access.log影响访问速度吗相关的知识,希望对你有一定的参考价值。

参考技术A 通过nginx,Tomcat访问日志(access log)记录请求耗时 一、Nginx通过$upstream_response_time $request_time统计请求和后台服务响应时间 nginx.conf使用配置方式本回答被提问者采纳

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

以上是关于nginx access.log影响访问速度吗的主要内容,如果未能解决你的问题,请参考以下文章

nginx访问量统计

nginx访问量统计

nginx 访问统计

统计nginx日志

nginx访问量统计

nginx日志统计教程