diff --git a/docs/README.md b/docs/README.md index 15d6adb0c5..d39430321a 100644 --- a/docs/README.md +++ b/docs/README.md @@ -8,7 +8,7 @@ [![FOSSA License Status](https://app.fossa.com/api/projects/custom%2B162%2Fgithub.com%2Fopen-telemetry%2Fopentelemetry-dotnet-instrumentation.svg?type=shield&issueType=license)](https://app.fossa.com/projects/custom%2B162%2Fgithub.com%2Fopen-telemetry%2Fopentelemetry-dotnet-instrumentation?ref=badge_shield&issueType=license) [![FOSSA Security Status](https://app.fossa.com/api/projects/custom%2B162%2Fgithub.com%2Fopen-telemetry%2Fopentelemetry-dotnet-instrumentation.svg?type=shield&issueType=security)](https://app.fossa.com/projects/custom%2B162%2Fgithub.com%2Fopen-telemetry%2Fopentelemetry-dotnet-instrumentation?ref=badge_shield&issueType=security) -This project adds [OpenTelemetry instrumentation](https://opentelemetry.io/docs/concepts/instrumenting/#automatic-instrumentation) +This project adds [OpenTelemetry instrumentation](https://opentelemetry.io/docs/concepts/instrumentation/zero-code/) to .NET applications without having to modify their source code. --- @@ -17,7 +17,7 @@ to .NET applications without having to modify their source code. > The following documentation refers to the in-development version of OpenTelemetry .NET Automatic Instrumentation. Docs for the latest version ([1.13.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest)) -can be found in [opentelemetry.io](https://opentelemetry.io/docs/zero-code/net/) +can be found in [opentelemetry.io](https://opentelemetry.io/docs/zero-code/dotnet/) or [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.13.0/docs/README.md). --- diff --git a/src/OpenTelemetry.AutoInstrumentation.BuildTasks/OpenTelemetry.AutoInstrumentation.BuildTasks.targets b/src/OpenTelemetry.AutoInstrumentation.BuildTasks/OpenTelemetry.AutoInstrumentation.BuildTasks.targets index 25f73aaa8f..82e6b09088 100644 --- a/src/OpenTelemetry.AutoInstrumentation.BuildTasks/OpenTelemetry.AutoInstrumentation.BuildTasks.targets +++ b/src/OpenTelemetry.AutoInstrumentation.BuildTasks/OpenTelemetry.AutoInstrumentation.BuildTasks.targets @@ -28,7 +28,7 @@ - + diff --git a/test/NuGetPackagesTests/InstrumentationTargetTests.cs b/test/NuGetPackagesTests/InstrumentationTargetTests.cs index f49862a492..e6f3d744b5 100644 --- a/test/NuGetPackagesTests/InstrumentationTargetTests.cs +++ b/test/NuGetPackagesTests/InstrumentationTargetTests.cs @@ -124,7 +124,7 @@ private void RunDotnetPublish(string arguments, bool expectWarning) { const string warningMessage = "RuntimeIdentifier (RID) is not set." + " Consider setting it to avoid copying native libraries for all of the platforms supported by the OpenTelemetry.AutoInstrumentation package." + - " See the docs at https://opentelemetry.io/docs/zero-code/net/nuget-packages/#using-the-nuget-packages for details." + + " See the docs at https://opentelemetry.io/docs/zero-code/dotnet/nuget-packages/#using-the-nuget-packages for details." + " In order to suppress this warning, set DisableAutoInstrumentationCheckForRuntimeIdentifier property to true."; var (exitCode, standardOutput) = RunDotnetCliAndWaitForCompletion($"publish {arguments}");