Open
Description
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.
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:
- Disable the checkpoint in DefaultWebFilterChain
OR - Provide the name of each WebFilter explicitly
Thanks for your help!