Nginx 日志中记录cookie

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx 日志中记录cookie相关的知识,希望对你有一定的参考价值。

因开发要求,在nginx日志中需要记录Cookie信息,以便开发查询系统发生了什么,我的日志是以json格式显示,需要在nginx.conf文件中添加如下信息:

1,#vim  nginx.conf

http {
    include       mime.types;
    default_type  application/octet-stream;
   log_format logstash_json ‘{"@timestamp":"$time_iso8601",‘
                 ‘"host":"$server_addr",‘
                 ‘"clientip":"$remote_addr",‘
                 ‘"size":$body_bytes_sent,‘
                 ‘"responsetime":$request_time,‘
                 ‘"upstreamtime":"$upstream_response_time",‘
                 ‘"upstreamhost":"$upstream_addr",‘
                 ‘"http_host":"$host",‘
                 ‘"url":"$uri",‘
                 ‘"xff":"$http_x_forwarded_for",‘
                 ‘"referer":"$http_referer",‘
                 ‘"agent":"$http_user_agent",‘
                 ‘"@req_body":"$request_body",‘
                 ‘"$http_cookie":"$http_cookie",‘ 添加这行
                 ‘"status":"$status"}‘;

  location ~* ^/test/.*$ {
        proxy_hide_header Set-Cookie;  添加这行
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://10.9.54.1:797;
2,再查看Nginx日志,就可以显示Cookie信息了

技术分享

以上是关于Nginx 日志中记录cookie的主要内容,如果未能解决你的问题,请参考以下文章

nginx日志不记录静态文件访问和缓存

48.Nginx访问日志Nginx日志切割静态文件不记录日志和过期时间

nginx 不记录访问日志是怎么回事

Nginx访问日志日志切割及静态文件不记录日志和过期时间的配置

12.10 Nginx访问日志 12.11 Nginx日志切割 12.12 静态文件不记录日志和过期

Nginx日志配置