Skip to content

Commit 3d4d1e8

Browse files
committed
Remove management.tracing.enabled from documentation
Closes gh-38626
1 parent f509c90 commit 3d4d1e8

File tree

1 file changed

+0
-13
lines changed
  • spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/tracing

1 file changed

+0
-13
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/tracing/TracingProperties.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@
3131
@ConfigurationProperties("management.tracing")
3232
public class TracingProperties {
3333

34-
/**
35-
* Whether auto-configuration of tracing is enabled.
36-
*/
37-
private boolean enabled = true;
38-
3934
/**
4035
* Sampling configuration.
4136
*/
@@ -56,14 +51,6 @@ public class TracingProperties {
5651
*/
5752
private final Brave brave = new Brave();
5853

59-
public boolean isEnabled() {
60-
return this.enabled;
61-
}
62-
63-
public void setEnabled(boolean enabled) {
64-
this.enabled = enabled;
65-
}
66-
6754
public Sampling getSampling() {
6855
return this.sampling;
6956
}

0 commit comments

Comments
 (0)