美文网首页
Nginx 配置post请求,用body收集日志数据

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

作者: 勇于自信 | 来源:发表于2022-03-04 23:42 被阅读0次
    在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收集日志数据

          本文链接:https://www.haomeiwen.com/subject/ivrvrrtx.html