Skip to content

Commit a394f53

Browse files
authored
Update the default version used for .NET for SSI to v3 (DataDog#25133)
1 parent 5ec1718 commit a394f53

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

content/en/tracing/trace_collection/automatic_instrumentation/single-step-apm.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For an Ubuntu host:
3737
1. Run the one-line installation command:
3838

3939
```shell
40-
DD_API_KEY=<YOUR_DD_API_KEY> DD_SITE="<YOUR_DD_SITE>" DD_APM_INSTRUMENTATION_ENABLED=host DD_APM_INSTRUMENTATION_LIBRARIES=java:1,python:2,js:5,dotnet:2,ruby:2 DD_ENV=<AGENT_ENV> bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
40+
DD_API_KEY=<YOUR_DD_API_KEY> DD_SITE="<YOUR_DD_SITE>" DD_APM_INSTRUMENTATION_ENABLED=host DD_APM_INSTRUMENTATION_LIBRARIES=java:1,python:2,js:5,dotnet:3,ruby:2 DD_ENV=<AGENT_ENV> bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
4141
```
4242

4343
Replace `<YOUR_DD_API_KEY>` with your [Datadog API key][4], `<YOUR_DD_SITE>` with your [Datadog site][3], and `<AGENT_ENV>` with the environment your Agent is installed on (for example, `staging`).
@@ -62,7 +62,7 @@ For a Docker Linux container:
6262

6363
1. Run the one-line installation command:
6464
```shell
65-
DD_APM_INSTRUMENTATION_ENABLED=docker DD_APM_INSTRUMENTATION_LIBRARIES=java:1,python:2,js:5,dotnet:2,ruby:2 DD_NO_AGENT_INSTALL=true bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
65+
DD_APM_INSTRUMENTATION_ENABLED=docker DD_APM_INSTRUMENTATION_LIBRARIES=java:1,python:2,js:5,dotnet:3,ruby:2 DD_NO_AGENT_INSTALL=true bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
6666
```
6767
2. Configure the Agent in Docker:
6868
```shell
@@ -138,7 +138,7 @@ To enable Single Step Instrumentation with the Datadog Operator:
138138
enabled: true
139139
libVersions:
140140
java: 1
141-
dotnet: 2
141+
dotnet: 3
142142
python: 2
143143
js: 5
144144
ruby: 2
@@ -179,7 +179,7 @@ To enable Single Step Instrumentation with Helm:
179179
enabled: true
180180
libVersions:
181181
java: 1
182-
dotnet: 2
182+
dotnet: 3
183183
python: 2
184184
js: 5
185185
ruby: 2
@@ -411,7 +411,7 @@ For example, to instrument .NET, Python, and Node.js applications, add the follo
411411
instrumentation:
412412
enabled: true
413413
libVersions: # Add any libraries and versions you want to set
414-
dotnet: v2.46.0
414+
dotnet: v3.2.0
415415
python: v1.20.6
416416
js: v4.17.0
417417
{{< /highlight >}}
@@ -428,7 +428,7 @@ For example, to instrument .NET, Python, and Node.js applications, add the follo
428428
instrumentation:
429429
enabled: true
430430
libVersions: # Add any libraries and versions you want to set
431-
dotnet: v2.46.0
431+
dotnet: v3.2.0
432432
python: v1.20.6
433433
js: v4.17.0
434434
{{< /highlight >}}

content/en/tracing/trace_collection/library_injection_local.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ When both the Agent and your services are running on a host, real or virtual, Da
277277
If the host does not yet have a Datadog Agent installed, or if you want to upgrade your Datadog Agent installation, use the Datadog Agent install script to install both the injection libraries and the Datadog Agent:
278278

279279
```shell
280-
DD_APM_INSTRUMENTATION_ENABLED=host DD_APM_INSTRUMENTATION_LIBRARIES=java:1,python:2,js:5,dotnet:2,ruby:2 DD_API_KEY=<YOUR KEY> DD_SITE="<YOUR SITE>" bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
280+
DD_APM_INSTRUMENTATION_ENABLED=host DD_APM_INSTRUMENTATION_LIBRARIES=java:1,python:2,js:5,dotnet:3,ruby:2 DD_API_KEY=<YOUR KEY> DD_SITE="<YOUR SITE>" bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
281281
```
282282

283283
By default, running the script installs support for Java, Node.js, Python, Ruby, and .NET all pinned to the latest major version. If you want to specify which language support is installed, also set the `DD_APM_INSTRUMENTATION_LIBRARIES` environment variable. The valid values are `java`, `js`, `python`, `ruby`, and `dotnet`. Use a comma-separated list to specify more than one language:
@@ -427,7 +427,7 @@ Any newly started processes are intercepted and the specified instrumentation li
427427
Use the `install_script_docker_injection` shell script to automatically install Docker injection support. Docker must already be installed on the host machine.
428428

429429
```shell
430-
DD_APM_INSTRUMENTATION_ENABLED=docker DD_APM_INSTRUMENTATION_LIBRARIES=java:1,python:2,js:5,dotnet:2,ruby:2 DD_NO_AGENT_INSTALL=true bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
430+
DD_APM_INSTRUMENTATION_ENABLED=docker DD_APM_INSTRUMENTATION_LIBRARIES=java:1,python:2,js:5,dotnet:3,ruby:2 DD_NO_AGENT_INSTALL=true bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
431431
```
432432

433433
This installs language libraries for all supported languages. To install specific languages, set the `DD_APM_INSTRUMENTATION_LIBRARIES` variable. The valid values are `java`, `js`, `python`, `ruby`, and `dotnet`:

0 commit comments

Comments
 (0)