Skip to content

Commit d759fbb

Browse files
committed
Rename other references to in-process
1 parent ab8ce2e commit d759fbb

File tree

13 files changed

+37
-37
lines changed

13 files changed

+37
-37
lines changed

content/en/serverless/azure_functions/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This page explains how to collect traces, trace metrics, runtime metrics, and cu
2626
```js
2727
require('@datadog/serverless-compat').start();
2828

29-
// This line must come before importing any instrumented module.
29+
// This line must come before importing any instrumented module.
3030
const tracer = require('dd-trace').init()
3131
```
3232

@@ -101,7 +101,7 @@ This page explains how to collect traces, trace metrics, runtime metrics, and cu
101101
Datadog.Serverless.CompatibilityLayer.Start();
102102
```
103103

104-
If your Azure Function app uses the In-Process model, add a NuGet package reference to `Microsoft.Azure.Functions.Extensions`:
104+
If your Azure Function app uses the In-Container model, add a NuGet package reference to `Microsoft.Azure.Functions.Extensions`:
105105
```shell
106106
dotnet package add Microsoft.Azure.Functions.Extensions
107107
```
@@ -197,7 +197,7 @@ You can collect [debug logs][6] for troubleshooting. To configure debug logs, us
197197
`DD_TRACE_DEBUG`
198198
: Enables (`true`) or disables (`false`) debug logging for the Datadog Tracing Library. Defaults to `false`.
199199

200-
**Values**: `true`, `false`
200+
**Values**: `true`, `false`
201201

202202
`DD_LOG_LEVEL`
203203
: Sets logging level for the Datadog Serverless Compatibility Layer. Defaults to `info`.

content/en/serverless/google_cloud_run/containers/_index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ further_reading:
77
- link: 'https://www.datadoghq.com/blog/collect-traces-logs-from-cloud-run-with-datadog/'
88
tag: 'Blog'
99
text: 'Collect traces, logs, and custom metrics from Cloud Run services'
10-
- link: "/serverless/google_cloud_run/containers/in_process/"
10+
- link: "/serverless/google_cloud_run/containers/in_container/"
1111
tag: 'Documentation'
12-
text: 'Instrument your container with the in-process approach'
12+
text: 'Instrument your container with the in-container approach'
1313
- link: "/serverless/google_cloud_run/containers/sidecar/"
1414
tag: 'Documentation'
1515
text: 'Instrument your container with the sidecar approach'
@@ -22,12 +22,12 @@ To instrument your Google Cloud Run containers with Datadog, choose one of two o
2222

2323
{{% gcr-container-options %}}
2424

25-
- [**In-process**][1]: Wraps your application container with the Datadog Agent. Choose this option for a simpler setup, lower cost overhead, and direct log piping.
25+
- [**In-Container**][1]: Wraps your application container with the Datadog Agent. Choose this option for a simpler setup, lower cost overhead, and direct log piping.
2626
- [**Sidecar**][2]: Deploys the Datadog Agent in a separate container alongside your app container. Choose this option if you have multiple containers in a single service, if you prefer strict isolation of the Datadog Agent, or if you have performance-sensitive workloads.
2727

28-
## Comparison: in-process versus sidecar instrumentation
28+
## Comparison: in-container versus sidecar instrumentation
2929

30-
| Aspect | In-process | Sidecar |
30+
| Aspect | In-container | Sidecar |
3131
|-------------------------------|----------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
3232
| Deployment | One container (your app, wrapped with the Datadog Agent) | Two containers ( your app, Datadog Agent) |
3333
| Image changes | Increases app image size. | No change to app image. |
@@ -41,5 +41,5 @@ To instrument your Google Cloud Run containers with Datadog, choose one of two o
4141

4242
{{< partial name="whats-next/whats-next.html" >}}
4343

44-
[1]: /serverless/google_cloud_run/containers/in_process
44+
[1]: /serverless/google_cloud_run/containers/in_container
4545
[2]: /serverless/google_cloud_run/containers/sidecar

content/en/serverless/google_cloud_run/containers/in_container/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: In-Process Instrumentation
2+
title: In-Container Instrumentation
33
type: multi-code-lang
44
aliases:
55
- /serverless/google_cloud_run/containers_in_process/
@@ -10,6 +10,6 @@ First, set up the **[Google Cloud Integration][1]** to collect metrics and logs
1010

1111
Then, instrument your application using one of the following guides:
1212

13-
{{% container-languages path="in_process" %}}
13+
{{% container-languages path="in_container" %}}
1414

1515
[1]: /integrations/google-cloud-platform/

content/en/serverless/google_cloud_run/containers/in_container/dotnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Instrumenting a .NET Cloud Run Container In-Process
2+
title: Instrumenting a .NET Cloud Run Container In-Container
33
code_lang: dotnet
44
type: multi-code-lang
55
code_lang_weight: 50
@@ -16,7 +16,7 @@ further_reading:
1616

1717
## Setup
1818

19-
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-process/dotnet">available on GitHub</a>.</div>
19+
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-container/dotnet">available on GitHub</a>.</div>
2020

2121
1. **Install the Datadog .NET tracer** in your Dockerfile.
2222

@@ -78,7 +78,7 @@ logger.LogInformation("Hello World!");
7878

7979
To send custom metrics, [install the DogStatsD client][4] and [view code examples][5].
8080

81-
{{% gcr-env-vars instrumentationMethod="in-process" language="csharp" %}}
81+
{{% gcr-env-vars instrumentationMethod="in-container" language="csharp" %}}
8282

8383
## Troubleshooting
8484

content/en/serverless/google_cloud_run/containers/in_container/go.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Instrumenting a Go Cloud Run Container In-Process
2+
title: Instrumenting a Go Cloud Run Container In-Container
33
code_lang: go
44
type: multi-code-lang
55
code_lang_weight: 30
@@ -16,7 +16,7 @@ further_reading:
1616

1717
## Setup
1818

19-
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-process/go">available on GitHub</a>.</div>
19+
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-container/go">available on GitHub</a>.</div>
2020

2121
1. **Install the Datadog Go tracer**.
2222

@@ -73,7 +73,7 @@ go get github.com/DataDog/dd-trace-go/contrib/net/http/v2
7373

7474
To send custom metrics, [install the DogStatsD client][4] and [view code examples][5].
7575

76-
{{% gcr-env-vars instrumentationMethod="in-process" language="go" %}}
76+
{{% gcr-env-vars instrumentationMethod="in-container" language="go" %}}
7777

7878
## Troubleshooting
7979

content/en/serverless/google_cloud_run/containers/in_container/java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Instrumenting a Java Cloud Run Container In-Process
2+
title: Instrumenting a Java Cloud Run Container In-Container
33
code_lang: java
44
type: multi-code-lang
55
code_lang_weight: 40
@@ -16,7 +16,7 @@ further_reading:
1616

1717
## Setup
1818

19-
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-process/java">available on GitHub</a>.</div>
19+
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-container/java">available on GitHub</a>.</div>
2020

2121
1. **Install the Datadog Java tracer**.
2222

@@ -88,7 +88,7 @@ logger.info("Hello World!");
8888

8989
To send custom metrics, [install the DogStatsD client][3] and [view code examples][4].
9090

91-
{{% gcr-env-vars instrumentationMethod="in-process" language="java" %}}
91+
{{% gcr-env-vars instrumentationMethod="in-container" language="java" %}}
9292

9393
## Troubleshooting
9494

content/en/serverless/google_cloud_run/containers/in_container/nodejs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Instrumenting a Node.js Cloud Run Container In-Process
2+
title: Instrumenting a Node.js Cloud Run Container In-Container
33
code_lang: nodejs
44
type: multi-code-lang
55
code_lang_weight: 20
@@ -16,7 +16,7 @@ further_reading:
1616

1717
## Setup
1818

19-
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-process/node">available on GitHub</a>.</div>
19+
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-container/node">available on GitHub</a>.</div>
2020

2121
1. **Install the Datadog Node.js tracer**.
2222

@@ -81,7 +81,7 @@ logger.info(`Hello world!`);
8181

8282
To send custom metrics, [view code examples][3].
8383

84-
{{% gcr-env-vars instrumentationMethod="in-process" language="nodejs" %}}
84+
{{% gcr-env-vars instrumentationMethod="in-container" language="nodejs" %}}
8585

8686
## Troubleshooting
8787

content/en/serverless/google_cloud_run/containers/in_container/php.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Instrumenting a PHP Cloud Run Container In-Process
2+
title: Instrumenting a PHP Cloud Run Container In-Container
33
code_lang: php
44
type: multi-code-lang
55
code_lang_weight: 70
@@ -16,7 +16,7 @@ further_reading:
1616

1717
## Setup
1818

19-
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-process/php">available on GitHub</a>.</div>
19+
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-container/php">available on GitHub</a>.</div>
2020

2121
1. **Install the Datadog PHP tracer** in your Dockerfile.
2222

@@ -57,7 +57,7 @@ apk add libgcc
5757

5858
To send custom metrics, [install the DogStatsD client][3] and [view code examples][4].
5959

60-
{{% gcr-env-vars instrumentationMethod="in-process" language="php" %}}
60+
{{% gcr-env-vars instrumentationMethod="in-container" language="php" %}}
6161

6262
## Troubleshooting
6363

content/en/serverless/google_cloud_run/containers/in_container/python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Instrumenting a Python Cloud Run Container In-Process
2+
title: Instrumenting a Python Cloud Run Container In-Container
33
code_lang: python
44
type: multi-code-lang
55
code_lang_weight: 10
@@ -16,7 +16,7 @@ further_reading:
1616

1717
## Setup
1818

19-
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-process/python">available on GitHub</a>.</div>
19+
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-container/python">available on GitHub</a>.</div>
2020

2121
1. **Install the Datadog Python tracer**.
2222

@@ -78,7 +78,7 @@ logger.info("Hello world!")
7878

7979
To send custom metrics, [install the DogStatsD client][4] and [view code examples][5].
8080

81-
{{% gcr-env-vars instrumentationMethod="in-process" language="python" %}}
81+
{{% gcr-env-vars instrumentationMethod="in-container" language="python" %}}
8282

8383
## Troubleshooting
8484

content/en/serverless/google_cloud_run/containers/in_container/ruby.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Instrumenting a Ruby Cloud Run Container In-Process
2+
title: Instrumenting a Ruby Cloud Run Container In-Container
33
code_lang: ruby
44
type: multi-code-lang
55
code_lang_weight: 60
@@ -16,7 +16,7 @@ further_reading:
1616

1717
## Setup
1818

19-
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-process/ruby">available on GitHub</a>.</div>
19+
<div class="alert alert-info">A sample application is <a href="https://github.com/DataDog/serverless-gcp-sample-apps/tree/main/cloud-run/in-container/ruby">available on GitHub</a>.</div>
2020

2121
1. **Install the Datadog Ruby tracer**.
2222

@@ -60,7 +60,7 @@ logger.info "Hello world!"
6060

6161
To send custom metrics, [install the DogStatsD client][3] and [view code examples][4].
6262

63-
{{% gcr-env-vars instrumentationMethod="in-process" language="ruby" %}}
63+
{{% gcr-env-vars instrumentationMethod="in-container" language="ruby" %}}
6464

6565
## Troubleshooting
6666

0 commit comments

Comments
 (0)