Package io.sentry.spring.jakarta.tracing
Class SentryTracingFilter
java.lang.Object
org.springframework.web.filter.GenericFilterBean
org.springframework.web.filter.OncePerRequestFilter
io.sentry.spring.jakarta.tracing.SentryTracingFilter
- All Implemented Interfaces:
jakarta.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.OncePerRequestFilter
Creates
ITransaction around HTTP request executions if performance is enabled. Otherwise
just reads tracing information from incoming request.-
Field Summary
Fields inherited from class org.springframework.web.filter.OncePerRequestFilter
ALREADY_FILTERED_SUFFIXFields inherited from class org.springframework.web.filter.GenericFilterBean
logger -
Constructor Summary
ConstructorsConstructorDescriptionCreates 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
Modifier and TypeMethodDescriptionprotected voiddoFilterInternal(@NotNull jakarta.servlet.http.HttpServletRequest httpRequest, @NotNull jakarta.servlet.http.HttpServletResponse httpResponse, @NotNull jakarta.servlet.FilterChain filterChain) Methods inherited from class org.springframework.web.filter.OncePerRequestFilter
doFilter, doFilterNestedErrorDispatch, getAlreadyFilteredAttributeName, isAsyncDispatch, isAsyncStarted, shouldNotFilter, shouldNotFilterAsyncDispatch, shouldNotFilterErrorDispatchMethods inherited from class org.springframework.web.filter.GenericFilterBean
addRequiredProperty, afterPropertiesSet, createEnvironment, destroy, getEnvironment, getFilterConfig, getFilterName, getServletContext, init, initBeanWrapper, initFilterBean, setBeanName, setEnvironment, setServletContext
-
Constructor Details
-
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 Details
-
doFilterInternal
protected void doFilterInternal(@NotNull @NotNull jakarta.servlet.http.HttpServletRequest httpRequest, @NotNull @NotNull jakarta.servlet.http.HttpServletResponse httpResponse, @NotNull @NotNull jakarta.servlet.FilterChain filterChain) throws jakarta.servlet.ServletException, IOException - Specified by:
doFilterInternalin classorg.springframework.web.filter.OncePerRequestFilter- Throws:
jakarta.servlet.ServletExceptionIOException
-