Package io.sentry.spring.jakarta.tracing
Class CombinedTransactionNameProvider
java.lang.Object
io.sentry.spring.jakarta.tracing.CombinedTransactionNameProvider
- All Implemented Interfaces:
TransactionNameProvider
@Internal
public final class CombinedTransactionNameProvider
extends Object
implements TransactionNameProvider
Resolves transaction name using other transaction name providers by invoking them in order. If a
provider returns no transaction name, the next one is invoked.
-
Constructor Summary
ConstructorsConstructorDescriptionCombinedTransactionNameProvider
(@NotNull List<TransactionNameProvider> providers) -
Method Summary
Modifier and TypeMethodDescription@Nullable String
provideTransactionName
(@NotNull jakarta.servlet.http.HttpServletRequest request) Resolves transaction name fromHttpServletRequest
.@NotNull TransactionNameWithSource
provideTransactionNameAndSource
(@NotNull jakarta.servlet.http.HttpServletRequest request) @NotNull TransactionNameSource
Returns the source of the transaction name.
-
Constructor Details
-
CombinedTransactionNameProvider
-
-
Method Details
-
provideTransactionName
@Nullable public @Nullable String provideTransactionName(@NotNull @NotNull jakarta.servlet.http.HttpServletRequest request) Description copied from interface:TransactionNameProvider
Resolves transaction name fromHttpServletRequest
.- Specified by:
provideTransactionName
in interfaceTransactionNameProvider
- Parameters:
request
- - the http request- Returns:
- transaction name or
null
if not resolved
-
provideTransactionSource
Description copied from interface:TransactionNameProvider
Returns the source of the transaction name. Only to be used internally.- Specified by:
provideTransactionSource
in interfaceTransactionNameProvider
-
provideTransactionNameAndSource
@Internal @NotNull public @NotNull TransactionNameWithSource provideTransactionNameAndSource(@NotNull @NotNull jakarta.servlet.http.HttpServletRequest request) - Specified by:
provideTransactionNameAndSource
in interfaceTransactionNameProvider
-