环境:
ubuntu14
nginx-1.12.1
生产环境中的某些api出现故障,但是问题无法重现,但是又很想解决掉问题以及我们新项目上线,需要跟踪请求与响应的信息,可以预先找到一些bug,减少大面积的损失。
。。。。。。。。。。。。。。。。
配置方式:
在nginx.conf中
http模块定义日志内容
log_format main postdata escape=json '$remote_addr\t$remote_user\t[$time_local]\t"$request"\t$status\t$bytes_sent\t'
'"$http_referer"\t"$http_user_agent"\t"$http_cookie"\t"$request_body"';
server模块中定义日志文件
access_log /tmp/access.log main;
ps:
escape参数是在nginx1.11.8以后新增,如果版本过低,可使用shell替换
x22代表双引号