我是靠谱客的博主 整齐香水,最近开发中收集的这篇文章主要介绍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 配置post请求,用body收集日志数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部