Nginx 配置post请求,用body收集日志数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx 配置post请求,用body收集日志数据相关的知识,希望对你有一定的参考价值。
参考技术A 模拟postman发送请求监控access_log /data/project/log-server/logs/access-2022-03-04.log日志
nginx 日志打印post请求参数
在日志格式后面加上 $request_body 配置信息
log_format main ‘$remote_addr - $remote_user [$time_local] "$request" ‘ ‘$status $body_bytes_sent "$http_referer" ‘ ‘"$http_user_agent" "$http_x_forwarded_for" $request_body‘; access_log logs/access.log main;
以上是关于Nginx 配置post请求,用body收集日志数据的主要内容,如果未能解决你的问题,请参考以下文章