-
Notifications
You must be signed in to change notification settings - Fork 1.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
Provide more filtering for CustomRequestLog #5817
Comments
Hi @joakime , |
@rk1165 there's no prerequisites other than signing the ECA. If you want to help out and work on this you can implement this feature on your branch, write some junit tests for it, then you can create a pull request to the |
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
…LogFiltering Issue #5817 - allow CustomRequestLog to be filtered with BiPredicate
Jetty version
9.4.35+
Description
The current
CustomRequestLog
has only 1 filter option, which is the request uri path.Provide more filtering options.
I think just supporting a
BiPredicate<Request,Response>
onCustomRequestLog
which is used in.log(Request,Response)
should be the maximally flexible option.Complex rules can be done with BiPredicate composition (
.and()
,.or()
, and.not()
) or with customBiPredicate
behaviors.The text was updated successfully, but these errors were encountered: