我是靠谱客的博主 整齐香水,这篇文章主要介绍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"}"}

最后

以上就是整齐香水最近收集整理的关于Nginx 配置post请求,用body收集日志数据的全部内容,更多相关Nginx内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(128)

评论列表共有 0 条评论

立即
投稿
返回
顶部