Package io.dropwizard.servlets
Class SlowRequestFilter
- java.lang.Object
-
- io.dropwizard.servlets.SlowRequestFilter
-
- All Implemented Interfaces:
jakarta.servlet.Filter
public class SlowRequestFilter extends Object implements jakarta.servlet.Filter
A servlet filter which logs the methods and URIs of requests which take longer than a given duration of time to complete.
-
-
Constructor Summary
Constructors Constructor Description SlowRequestFilter()Creates a filter which logs requests which take longer than 1 second.SlowRequestFilter(Duration threshold)Creates a filter which logs requests which take longer than the given duration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddestroy()voiddoFilter(jakarta.servlet.ServletRequest request, jakarta.servlet.ServletResponse response, jakarta.servlet.FilterChain chain)voidinit(jakarta.servlet.FilterConfig filterConfig)
-
-
-
Constructor Detail
-
SlowRequestFilter
public SlowRequestFilter()
Creates a filter which logs requests which take longer than 1 second.
-
SlowRequestFilter
public SlowRequestFilter(Duration threshold)
Creates a filter which logs requests which take longer than the given duration.- Parameters:
threshold- the threshold for considering a request slow
-
-
Method Detail
-
init
public void init(jakarta.servlet.FilterConfig filterConfig) throws jakarta.servlet.ServletException- Specified by:
initin interfacejakarta.servlet.Filter- Throws:
jakarta.servlet.ServletException
-
destroy
public void destroy()
- Specified by:
destroyin interfacejakarta.servlet.Filter
-
doFilter
public void doFilter(jakarta.servlet.ServletRequest request, jakarta.servlet.ServletResponse response, jakarta.servlet.FilterChain chain) throws IOException, jakarta.servlet.ServletException- Specified by:
doFilterin interfacejakarta.servlet.Filter- Throws:
IOExceptionjakarta.servlet.ServletException
-
-