隐藏 nginx 访问日志中的获取参数

隐藏 nginx 访问日志中的获取参数

我想启用访问日志以查看有关我们服务的统计信息,我遇到的问题是访问日志格式的 $request 保存了所有 GET 参数(这是有意义的,因为它是请求的一部分)

但我想隐藏这些信息,这样就不会在日志中看到这些信息:

98.207.174.147 - - [26/Apr/2014:23:59:09 +0000] "GET /v1/api.json?parameter1=value1&paramter2=value2" HTTP/1.1" 200 13449 "-" "httperf/0.9.0"

我想看看

98.207.174.147 - - [26/Apr/2014:23:59:09 +0000] "GET /v1/api.json" HTTP/1.1" 200 13449 "-" "httperf/0.9.0"

答案1

您可以使用log_format指令ngx_http_log_module

例如,这种格式只会显示 uri,而没有任何查询字符串:

http {
       log_format combined_no_query '$remote_addr - $remote_user [$time_local] '
           '"$uri" $status $body_bytes_sent '
           '"$http_referer" "$http_user_agent"';
       //other configs ...
     }

 server {
       access_log /var/log/nginx/access.log combined_no_query
       //... 
      }

请注意,该$uri变量仅用于记录 uri,而没有任何查询字符串。

指令文档log_formathttp://nginx.org/en/docs/http/ngx_http_log_module.html

更多变量: http://nginx.org/en/docs/http/ngx_http_core_module.html#var_uri

相关内容