public static enum SleuthReactorProperties.InstrumentationType extends Enum<SleuthReactorProperties.InstrumentationType>
| Enum Constant and Description |
|---|
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.0
|
DECORATE_QUEUES
Uses the new decorate queues feature from Project Reactor.
|
MANUAL
Does not automatically wrap any operators.
|
| Modifier and Type | Method and Description |
|---|---|
static SleuthReactorProperties.InstrumentationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SleuthReactorProperties.InstrumentationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SleuthReactorProperties.InstrumentationType DECORATE_QUEUES
DECORATE_ON_EACH with the least
impact on the performance.public static final SleuthReactorProperties.InstrumentationType DECORATE_ON_EACH
@Deprecated public static final SleuthReactorProperties.InstrumentationType DECORATE_ON_LAST
public static final SleuthReactorProperties.InstrumentationType MANUAL
public static SleuthReactorProperties.InstrumentationType[] values()
for (SleuthReactorProperties.InstrumentationType c : SleuthReactorProperties.InstrumentationType.values()) System.out.println(c);
public static SleuthReactorProperties.InstrumentationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Pivotal Software, Inc.. All rights reserved.