Annotation Interface ConditionalOnEnabledTracing
@Retention(RUNTIME)
@Target({TYPE,METHOD})
@Documented
@ConditionalOnProperty(prefix="management.tracing",
name="enabled",
matchIfMissing=true)
public @interface ConditionalOnEnabledTracing
@Conditional
that checks whether tracing is enabled. It matches if
the value of the management.tracing.enabled
property is true
or if it
is not configured.- Since:
- 3.0.0
- Author:
- Moritz Halbritter