码迷,mamicode.com
首页 > Web开发 > 详细

nginx日志格式化json字串

时间:2020-06-14 20:40:04      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:img   time   serve   for   add   模块   tip   res   iso   

    log_format json ‘{"@timestamp":"$time_iso8601",‘

                 ‘"host":"$server_addr",‘

                 ‘"clientip":"$remote_addr",‘

                 ‘"size":$body_bytes_sent,‘

                 ‘"responsetime":$request_time,‘

                 ‘"upstreamtime":"$upstream_response_time",‘

                 ‘"upstreamhost":"$upstream_addr",‘

                 ‘"http_host":"$host",‘

                 ‘"url":"$uri",‘

                 ‘"xff":"$http_x_forwarded_for",‘

                 ‘"referer":"$http_referer",‘

                 ‘"agent":"$http_user_agent",‘

                 ‘"status":"$status"}‘;
  1. nginx.conf 添加log_format json 格式模板

  2. 技术图片

  3. vhost内conf模块添加输出日志格式模板 并重新启动nignx

    access_log /www/wwwlogs/app..plus.log json;
    4.cat app.
    .plus.log | awk -F ‘,‘ ‘{print $10}‘|sort|uniq -c|sort -rn|head -n 3

nginx日志格式化json字串

标签:img   time   serve   for   add   模块   tip   res   iso   

原文地址:https://www.cnblogs.com/aithot/p/13126417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!