Skip to content

Commit aa5e54d

Browse files
committed
Link fix
1 parent 9f0ec72 commit aa5e54d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

articles/azure-monitor/app/opentelemetry-dotnet-migrate.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ The following libraries are included in the Distro.
491491
#### Customizing Instrumentation Libraries
492492

493493
The Azure Monitor Distro includes .NET OpenTelemetry instrumentation for [ASP.NET Core](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNetCore/), [HttpClient](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Http/), and [SQLClient](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient).
494-
You can customize these included instrumentations or manually add additional instrumentation on your own using the OpenTelemetry API.
494+
You can customize these included instrumentations or manually add extra instrumentation on your own using the OpenTelemetry API.
495495

496496
Here are some examples of how to customize the instrumentation:
497497

@@ -527,9 +527,7 @@ builder.Services.Configure<HttpClientTraceInstrumentationOptions>(options =>
527527

528528
##### Customizing SqlClientInstrumentationOptions
529529

530-
While the [SQLClient](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient) instrumentation is still in beta, we have vendored it within our package.
531-
Once it reaches a stable release, it will be included as a standard package reference.
532-
Until then, for customization of the SQLClient instrumentation, manually add the OpenTelemetry.Instrumentation.SqlClient package reference to your project and utilize its public API.
530+
We vendor the [SQLClient](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient) instrumentation within our package while it's still in beta. When it reaches a stable release, we include it as a standard package reference. Until then, to customize the SQLClient instrumentation, add the `OpenTelemetry.Instrumentation.SqlClient` package reference to your project and use its public API.
533531

534532
```
535533
dotnet add package --prerelease OpenTelemetry.Instrumentation.SqlClient
@@ -1071,7 +1069,7 @@ In the Application Insights .NET SDK, use telemetry processors to filter and mod
10711069

10721070
#### Filtering Traces
10731071

1074-
To filter telemetry data in OpenTelemetry, you can implement an activity processor. This example is equivalent to the Application Insights example for filtering telemetry data as described in [Azure Monitor documentation](./api-filtering-sampling.md?tabs=javascriptwebsdkloaderscript#c). The example illustrates where unsuccessful dependency calls are filtered.
1072+
To filter telemetry data in OpenTelemetry, you can implement an activity processor. This example is equivalent to the Application Insights example for filtering telemetry data as described in [Azure Monitor documentation](./api-filtering-sampling.md). The example illustrates where unsuccessful dependency calls are filtered.
10751073

10761074
```csharp
10771075
using System.Diagnostics;

0 commit comments

Comments
 (0)