diff --git a/CHANGELOG.md b/CHANGELOG.md index 76092dc090..2778ec2cc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,8 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h - Remove support for `OTEL_DOTNET_AUTO_ENABLED`. Use `CORECLR_ENABLE_PROFILING` or `COR_ENABLE_PROFILING` instead. - Remove support for `OTEL_DOTNET_AUTO_INCLUDE_PROCESSES`. +- Remove traces instrumentation for [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient) + as it is not working. ### Fixed diff --git a/docs/config.md b/docs/config.md index 8a95e2f5e4..14492cc2fb 100644 --- a/docs/config.md +++ b/docs/config.md @@ -43,7 +43,7 @@ for more details. | `MongoDB` | [MongoDB.Driver.Core](https://www.nuget.org/packages/MongoDB.Driver.Core) **Not supported on .NET Framework** | ≥2.13.3 & < 3.0.0 | source & bytecode | | `MySqlData` | [MySql.Data](https://www.nuget.org/packages/MySql.Data) **Not supported on .NET Framework** | ≥6.10.7 | source & bytecode \[1\] | | `Npgsql` | [Npgsql](https://www.nuget.org/packages/Npgsql) | ≥6.0.0 | source | -| `SqlClient` | [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient) and [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient) | * | source | +| `SqlClient` | [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient) | * | source | | `StackExchangeRedis` | [StackExchange.Redis](https://www.nuget.org/packages/StackExchange.Redis) **Not supported on .NET Framework** | ≥2.0.405 < 3.0.0 | source & bytecode | | `Wcf` | [System.ServiceModel](https://www.nuget.org/packages/System.ServiceModel) **No support for server side on .NET**. For configuration see [WCF Instrumentation Configuration](wcf-config.md) | * \[2\] | source | diff --git a/docs/internal/instrumentation-libraries.md b/docs/internal/instrumentation-libraries.md index 5bc1daaf99..688bea55a0 100644 --- a/docs/internal/instrumentation-libraries.md +++ b/docs/internal/instrumentation-libraries.md @@ -36,7 +36,7 @@ submit an issue to request its inclusion. | [Entity Framework Core](https://docs.microsoft.com/ef/core/) | | | | Needs investigation. It might be implicitly supported based on the configured [database provider](https://docs.microsoft.com/ef/core/providers/). | | [Dapper](https://github.com/DapperLib/Dapper) | | | | Needs investigation. It might be implicitly supported based on the configured [database provider](https://github.com/DapperLib/Dapper#will-dapper-work-with-my-db-provider). | | [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient) | Yes | | [MS SQL Server](https://www.microsoft.com/sql-server/sql-server-2019) | | -| [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient) | Yes | | | | +| [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient) | | | | | | [MySql.Data](https://dev.mysql.com/doc/connector-net/en/connector-net-introduction.html) | Partial[^not_on_framework] | | | This is the official [MySQL](https://dev.mysql.com/) library. | | [MySqlConnector](https://mysqlconnector.net/) | | | | Seems to be the [recommended library for MariaDB](https://mariadb.com/kb/en/mysqlconnector-for-adonet/). | | [Npgsql](https://www.npgsql.org/) | Yes | | [PostgreSQL](https://www.postgresql.org/) | |