Class SleuthReactorProperties
- java.lang.Object
-
- org.springframework.cloud.sleuth.autoconfig.instrument.reactor.SleuthReactorProperties
-
@ConfigurationProperties("spring.sleuth.reactor") public class SleuthReactorProperties extends ObjectSleuth Reactor settings.- Since:
- 2.0.2
- Author:
- Marcin Grzejszczak
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSleuthReactorProperties.InstrumentationType
-
Constructor Summary
Constructors Constructor Description SleuthReactorProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SleuthReactorProperties.InstrumentationTypegetInstrumentationType()booleanisDecorateOnEach()Deprecated.booleanisEnabled()voidsetDecorateOnEach(boolean decorateOnEach)Deprecated.voidsetEnabled(boolean enabled)voidsetInstrumentationType(SleuthReactorProperties.InstrumentationType instrumentationType)
-
-
-
Method Detail
-
isEnabled
public boolean isEnabled()
-
setEnabled
public void setEnabled(boolean enabled)
-
isDecorateOnEach
@DeprecatedConfigurationProperty(reason="An enum is a more clear solution", replacement="spring.sleuth.reactor.instrumentation-type=DECORATE_ON_EACH") @Deprecated public boolean isDecorateOnEach()Deprecated.
-
setDecorateOnEach
@Deprecated public void setDecorateOnEach(boolean decorateOnEach)
Deprecated.
-
getInstrumentationType
public SleuthReactorProperties.InstrumentationType getInstrumentationType()
-
setInstrumentationType
public void setInstrumentationType(SleuthReactorProperties.InstrumentationType instrumentationType)
-
-