Enum SleuthReactorProperties.InstrumentationType
java.lang.Object
java.lang.Enum<SleuthReactorProperties.InstrumentationType>
org.springframework.cloud.sleuth.autoconfig.instrument.reactor.SleuthReactorProperties.InstrumentationType
- All Implemented Interfaces:
Serializable,Comparable<SleuthReactorProperties.InstrumentationType>,java.lang.constant.Constable
- Enclosing class:
- SleuthReactorProperties
public static enum SleuthReactorProperties.InstrumentationType
extends Enum<SleuthReactorProperties.InstrumentationType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDecorates on each operator, will be less performing, but logging will always contain the tracing entries in each operator.Deprecated.to be removed in Sleuth 4.0.0Uses the new decorate queues feature from Project Reactor.Does not automatically wrap any operators. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DECORATE_QUEUES
Uses the new decorate queues feature from Project Reactor. Should allow the feature set ofDECORATE_ON_EACHwith the least impact on the performance. -
DECORATE_ON_EACH
Decorates on each operator, will be less performing, but logging will always contain the tracing entries in each operator. -
DECORATE_ON_LAST
Deprecated.to be removed in Sleuth 4.0.0Decorates on last operator, will be more performing, but logging might not always contain the tracing entries. -
MANUAL
Does not automatically wrap any operators.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-