知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

nginx日志打印相应时间

发布时间:2014-09-05 15:55:12作者:知识屋


nginx日志打印相应时间
 
日志格式:
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
                '$status $body_bytes_sent "$http_referer" '
                '"$http_user_agent" $http_x_forwarded_for "$request_time"';
配置:
        server {
        server_name  test.com;
        root html;
        index  index.html;
        access_log logs/access.log main;
}  www.zhishiwu.com  
 
可以为做性能测试统计平均时间
 
 awk '{sum+=$10;count+=1} END{print "SUM:"sum"/nAVG:"sum/count"/nCOUNT:"count}' access_log2012-08-24.16.log
 
 awk '{a_array[$1]+=$10;b_array[$1]++}END{for(i in a_array) print i":"a_array[i]":"b_array[i]}' access_log2012-08-24.16.log 
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜