Nginx 配置post请求,用body收集日志数据

在location /下的配置
fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME       $document_root$fastcgi_script_name;
            include fastcgi_params;
http中的配置
log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
# 配置日志格式
log_format json_log  escape=json '{"host":"$http_host $request","timestamp":"$msec","from_ip":"$remote_addr","read_ip":""$http_x_forwarded_for","url":"$request_uri","body":"$request_body"}'; 

#配置日志路径
access_log /data/project/log-server/logs/access-$logdate.log json_log;
测试

模拟postman发送请求

curl -H "Content-type:application/json" -X POST -d '{"key":"test"}' http://xxx.com

监控access_log /data/project/log-server/logs/access-2022-03-04.log日志

[root@bigdata103 logs]# tail -f access-2022-03-04.log
{"host":"bigdata.onedata.biz POST / HTTP/1.1","timestamp":"1646406928.897","from_ip":"113.65.38.110","read_ip":""113.65.38.110","url":"/","body":"{\"key\":\"test\"}"}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

友情链接更多精彩内容