Skip to content

Commit

Permalink
Remove management.tracing.enabled from documentation
Browse files Browse the repository at this point in the history
Closes gh-38626
  • Loading branch information
mhalbritter committed Dec 1, 2023
1 parent f509c90 commit 3d4d1e8
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@
@ConfigurationProperties("management.tracing")
public class TracingProperties {

/**
* Whether auto-configuration of tracing is enabled.
*/
private boolean enabled = true;

/**
* Sampling configuration.
*/
Expand All @@ -56,14 +51,6 @@ public class TracingProperties {
*/
private final Brave brave = new Brave();

public boolean isEnabled() {
return this.enabled;
}

public void setEnabled(boolean enabled) {
this.enabled = enabled;
}

public Sampling getSampling() {
return this.sampling;
}
Expand Down

0 comments on commit 3d4d1e8

Please sign in to comment.