@@ -12,9 +12,9 @@ to .NET applications without having to modify their source code.
1212> [ !WARNING]
1313> The following documentation refers to the in-development version
1414 of OpenTelemetry .NET Automatic Instrumentation. Docs for the latest version
15- ([ 1.10.0-beta.1 ] ( https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest ) )
15+ ([ 1.10.0] ( https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest ) )
1616can be found in [ opentelemetry.io] ( https://opentelemetry.io/docs/zero-code/net/ )
17- or [ here] ( https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.10.0-beta.1 /docs/README.md ) .
17+ or [ here] ( https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.10.0/docs/README.md ) .
1818
1919---
2020
@@ -180,7 +180,7 @@ Example usage:
180180
181181``` sh
182182# Download the bash script
183- curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.10.0-beta.1 /otel-dotnet-auto-install.sh -O
183+ curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.10.0/otel-dotnet-auto-install.sh -O
184184
185185# Install core files
186186sh ./otel-dotnet-auto-install.sh
@@ -200,6 +200,7 @@ NOTE: for air-gapped environments you can provide either the installation archiv
200200``` sh
201201LOCAL_PATH=< PATH_TO_ARCHIVE> sh ./otel-dotnet-auto-install.sh
202202```
203+
203204or the folder with the archives, this has the added benefit that the install script will determine
204205the correct archive to choose.
205206
@@ -219,7 +220,7 @@ uses environment variables as parameters:
219220| ` TMPDIR ` | (deprecated) prefer ` DOWNLOAD_DIR ` | No | ` $(mktemp -d) ` |
220221| ` DOWNLOAD_DIR ` | Folder to download the archive to. Will use local archive if it already exists | No | ` $TMPDIR ` or ` $(mktemp -d) ` |
221222| ` LOCAL_PATH ` | Full path the archive to use for installation. (ideal for air-gapped scenarios) | No | * Calculated* |
222- | ` VERSION ` | Version to download | No | ` 1.10.0-beta.1 ` |
223+ | ` VERSION ` | Version to download | No | ` 1.10.0 ` |
223224
224225[ instrument.sh] ( ../instrument.sh ) script
225226uses environment variables as parameters:
@@ -239,7 +240,7 @@ Example usage (run as administrator):
239240
240241``` powershell
241242# Download the module
242- $module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.10.0-beta.1 /OpenTelemetry.DotNet.Auto.psm1"
243+ $module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.10.0/OpenTelemetry.DotNet.Auto.psm1"
243244$download_path = Join-Path $env:temp "OpenTelemetry.DotNet.Auto.psm1"
244245Invoke-WebRequest -Uri $module_url -OutFile $download_path -UseBasicParsing
245246
0 commit comments