-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support log_format combined
setting of NGINX access logs
#6858
Support log_format combined
setting of NGINX access logs
#6858
Conversation
@kvch can you add a test case for that change? |
aa5fff1
to
2b13f13
Compare
sure. |
Should be fixed now. Let's see what the CIs have to say. :) |
a3b0c78
to
10aec0a
Compare
10aec0a
to
670ed57
Compare
@kvch Changes look good, waiting for Travis and Jenkins to do the CI dance. |
@ph The failing test is unrelated to this change. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
The following log line was not parsed successfully:
""
had to match the pattern\"%{WORD:nginx.access.method} %{DATA:nginx.access.url} HTTP/%{NUMBER:nginx.access.http_version}\"
It failed because those fields had to be there, empty values were not accepted. Also the pattern looks for
HTTP/
which was also missing.Now missing fields are allowed in this part of the message.
Closes #6798