需求:查看请求在nginx中消耗的时间,不包括程序响应时间。
1.声明日志的格式,在nginx配置文件nginx.conf里的http下添加如下内容:
- log_format test '$remote_addr - $remote_user [$time_local] "$request" '
- '$status $body_bytes_sent $request_body "$http_referer" '
- '"$http_user_agent" "$http_x_forwarded_for"'
- '$upstream_addr $upstream_response_time $request_time ';
2.在需要日志的server下添加:
access_log logs/test.log test;
3.分析nginx的日志,查出需要查看消耗时间的url,用$request_time减掉$upstream_response_time。
cat test.log | grep url | awk '{print $6 " " $7 " " $8 " " $11 " " ($NF-$(NF-1))}' > c.txt