Support DefaultWebFilterChain
allowing the current filter to provide it's name explicitly
#34702
Labels
in: web
Issues in web modules (web, webmvc, webflux, websocket)
status: waiting-for-triage
An issue we've not yet triaged or decided on
Hey 👋
I'm currently working with a spring based project that wraps certain WebFilters in an instrumentation decorator. Because of this, the checkpoint in
DefaultWebFilterChain
outputs the class name of the wrapper rather than the underlying filter.spring-framework/spring-web/src/main/java/org/springframework/web/server/handler/DefaultWebFilterChain.java
Lines 112 to 115 in c4e25a1
eg.
DefaultWebFilterChain -> InstrumentationDecorator -> ConcreteWebFilter
will checkpoint the name as "InstrumentationDecorator [DefaultWebFilterChain]". Our ideal is "ConcreteWebFilter [DefaultWebFilterChain]", or even just "ConcreteWebFilter".I'm hoping that we could either:
OR
Thanks for your help!
The text was updated successfully, but these errors were encountered: