Unverified Commit 41370e75 authored by Ben Cordero's avatar Ben Cordero
Browse files

Use `$request_method` and `$request_uri`

Otherwise, DD parses `path=GET`, treating the space as a separator.
parent f666158b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
# `nginx-sidecar` changelog

## 0.3.2

- Use `$request_method` and `$request_uri` instead of the combined `$request`.

## 0.3.1

- Log `$request_time`; request processing time in seconds (millisecond resolution).
+1 −1
Original line number Diff line number Diff line
0.3.1
0.3.2
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ http {
  include /etc/nginx/mime.types;
  default_type application/octet-stream;

  log_format  main  '[nginx]  path=$request '
  log_format  main  '[nginx] method=$request_method path=$request_uri '
                    'status=$status duration=$request_time size=$body_bytes_sent '
                    '"$remote_user" "$http_referer" "$http_user_agent"';