-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Add RequestLogEventBuilderFactory #6477
Conversation
@@ -56,96 +51,7 @@ public String toString() | |||
return "EmittingRequestLogger{" + | |||
"emitter=" + emitter + | |||
", feed='" + feed + '\'' + | |||
", requestLogEventBuilderFactory=" + requestLogEventBuilderFactory + |
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.
DefaultRequestLogEventBuilderFactory.toString()
is not implemented.
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.
Thanks, fixed
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
LGTM after travis. |
This PR allows to control the fields in
RequestLogEvent
, emitted inEmittingRequestLogger
. In our case, we want to get rid of theintervals
fields of the query objects that are a part ofDefaultRequestLogEvent
. They are enormous (thousands of segments) and not useful.Related to #5522, FYI @a2l007.