Package io.sentry.spring.tracing
Class SentryTracingFilter
- java.lang.Object
-
- org.springframework.web.filter.GenericFilterBean
-
- org.springframework.web.filter.OncePerRequestFilter
-
- io.sentry.spring.tracing.SentryTracingFilter
-
- All Implemented Interfaces:
javax.servlet.Filter,org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanNameAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean,org.springframework.context.EnvironmentAware,org.springframework.core.env.EnvironmentCapable,org.springframework.web.context.ServletContextAware
public class SentryTracingFilter extends org.springframework.web.filter.OncePerRequestFilterCreatesITransactionaround HTTP request executions.
-
-
Constructor Summary
Constructors Constructor Description SentryTracingFilter()Creates filter that resolves transaction name usingSpringMvcTransactionNameProvider.SentryTracingFilter(@NotNull io.sentry.IHub hub)SentryTracingFilter(@NotNull io.sentry.IHub hub, @NotNull TransactionNameProvider transactionNameProvider)Creates filter that resolves transaction name using transaction name provider given by parameter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoFilterInternal(@NotNull javax.servlet.http.HttpServletRequest httpRequest, @NotNull javax.servlet.http.HttpServletResponse httpResponse, @NotNull javax.servlet.FilterChain filterChain)-
Methods inherited from class org.springframework.web.filter.OncePerRequestFilter
doFilter, doFilterNestedErrorDispatch, getAlreadyFilteredAttributeName, isAsyncDispatch, isAsyncStarted, shouldNotFilter, shouldNotFilterAsyncDispatch, shouldNotFilterErrorDispatch
-
-
-
-
Constructor Detail
-
SentryTracingFilter
public SentryTracingFilter()
Creates filter that resolves transaction name usingSpringMvcTransactionNameProvider.Only requests that have
HandlerMapping.BEST_MATCHING_PATTERN_ATTRIBUTErequest attribute set are turned into transactions. This attribute is set inRequestMappingInfoHandlerMappingon request that have not been dropped with anyFilter.
-
SentryTracingFilter
public SentryTracingFilter(@NotNull @NotNull io.sentry.IHub hub, @NotNull @NotNull TransactionNameProvider transactionNameProvider)Creates filter that resolves transaction name using transaction name provider given by parameter.- Parameters:
hub- - the hubtransactionNameProvider- - transaction name provider.
-
SentryTracingFilter
public SentryTracingFilter(@NotNull @NotNull io.sentry.IHub hub)
-
-
Method Detail
-
doFilterInternal
protected void doFilterInternal(@NotNull @NotNull javax.servlet.http.HttpServletRequest httpRequest, @NotNull @NotNull javax.servlet.http.HttpServletResponse httpResponse, @NotNull @NotNull javax.servlet.FilterChain filterChain) throws javax.servlet.ServletException, java.io.IOException- Specified by:
doFilterInternalin classorg.springframework.web.filter.OncePerRequestFilter- Throws:
javax.servlet.ServletExceptionjava.io.IOException
-
-