Skip to content

Commit

Permalink
Deprecate quarkus.datasource.jdbc.tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsoro committed Sep 24, 2024
1 parent 656dd40 commit 2748015
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,10 @@ public interface DataSourceJdbcRuntimeConfig {

/**
* Enable JDBC tracing.
*
* @deprecated in favor of OpenTelemetry {@link #telemetry()}
*/
@Deprecated(forRemoval = true, since = "3.16")
DataSourceJdbcTracingRuntimeConfig tracing();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
import io.quarkus.runtime.annotations.ConfigGroup;
import io.smallrye.config.WithDefault;

/**
* @deprecated in favor of OpenTelemetry {@link DataSourceJdbcRuntimeConfig#telemetry()}
*/
@ConfigGroup
@Deprecated(forRemoval = true, since = "3.16")
public interface DataSourceJdbcTracingRuntimeConfig {

/**
Expand Down

0 comments on commit 2748015

Please sign in to comment.