@@ -12,9 +12,9 @@ to .NET applications without having to modify their source code.
12
12
> [ !WARNING]
13
13
> The following documentation refers to the in-development version
14
14
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 ) )
16
16
can 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 ) .
18
18
19
19
---
20
20
@@ -180,7 +180,7 @@ Example usage:
180
180
181
181
``` sh
182
182
# 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
184
184
185
185
# Install core files
186
186
sh ./otel-dotnet-auto-install.sh
@@ -200,6 +200,7 @@ NOTE: for air-gapped environments you can provide either the installation archiv
200
200
``` sh
201
201
LOCAL_PATH=< PATH_TO_ARCHIVE> sh ./otel-dotnet-auto-install.sh
202
202
```
203
+
203
204
or the folder with the archives, this has the added benefit that the install script will determine
204
205
the correct archive to choose.
205
206
@@ -219,7 +220,7 @@ uses environment variables as parameters:
219
220
| ` TMPDIR ` | (deprecated) prefer ` DOWNLOAD_DIR ` | No | ` $(mktemp -d) ` |
220
221
| ` DOWNLOAD_DIR ` | Folder to download the archive to. Will use local archive if it already exists | No | ` $TMPDIR ` or ` $(mktemp -d) ` |
221
222
| ` 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 ` |
223
224
224
225
[ instrument.sh] ( ../instrument.sh ) script
225
226
uses environment variables as parameters:
@@ -239,7 +240,7 @@ Example usage (run as administrator):
239
240
240
241
``` powershell
241
242
# 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"
243
244
$download_path = Join-Path $env:temp "OpenTelemetry.DotNet.Auto.psm1"
244
245
Invoke-WebRequest -Uri $module_url -OutFile $download_path -UseBasicParsing
245
246
0 commit comments