Skip to content

Commit 47567ba

Browse files
authored
[dual-shipping] Update DD domains for metrics, traces and logs (DataDog#15193)
* [dual-shipping] Update DD domains for metrics, traces and logs Update them to the standard domains that are used by the standard DD intakes, which should be relevant for most customers. * Change another instance of a logs endpoint
1 parent d6a6185 commit 47567ba

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

content/en/agent/guide/dual-shipping.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ You can add the YAML configuration to your `datadog.yaml` or launch the Agent wi
2424
In `datadog.yaml`:
2525
```yaml
2626
additional_endpoints:
27-
"https://mydomain.datadoghq.com":
27+
"https://app.datadoghq.com":
2828
- apikey2
2929
- apikey3
30-
"https://mydomain.datadoghq.eu":
30+
"https://app.datadoghq.eu":
3131
- apikey4
3232
```
3333
3434
### Environment variable configuration
3535
3636
```bash
37-
DD_ADDITIONAL_ENDPOINTS='{\"https://mydomain.datadoghq.com\": [\"apikey2\", \"apikey3\"], \"https://mydomain.datadoghq.eu\": [\"apikey4\"]}'
37+
DD_ADDITIONAL_ENDPOINTS='{\"https://app.datadoghq.com\": [\"apikey2\", \"apikey3\"], \"https://app.datadoghq.eu\": [\"apikey4\"]}'
3838
```
3939
4040
{{% /tab %}}
@@ -47,26 +47,26 @@ In `datadog.yaml`:
4747
apm_config:
4848
[...]
4949
additional_endpoints:
50-
"https://mydomain.datadoghq.com":
50+
"https://trace.agent.datadoghq.com":
5151
- apikey2
5252
- apikey3
53-
"https://mydomain.datadoghq.eu":
53+
"https://trace.agent.datadoghq.eu":
5454
- apikey4
5555
5656
profiling_additional_endpoints:
57-
"https://mydomain.datadoghq.com":
57+
"https://trace.agent.datadoghq.com":
5858
- apikey2
5959
- apikey3
60-
"https://mydomain.datadoghq.eu":
60+
"https://trace.agent.datadoghq.eu":
6161
- apikey4
6262
```
6363

6464
### Environment variable configuration
6565

6666
```bash
67-
DD_APM_ADDITIONAL_ENDPOINTS='{\"https://mydomain.datadoghq.com\": [\"apikey2\", \"apikey3\"], \"https://mydomain.datadoghq.eu\": [\"apikey4\"]}'
67+
DD_APM_ADDITIONAL_ENDPOINTS='{\"https://trace.agent.datadoghq.com\": [\"apikey2\", \"apikey3\"], \"https://trace.agent.datadoghq.eu\": [\"apikey4\"]}'
6868
69-
DD_APM_PROFILING_ADDITIONAL_ENDPOINTS='{\"https://mydomain.datadoghq.com\": [\"apikey2\", \"apikey3\"], \"https://mydomain.datadoghq.eu\": [\"apikey4\"]}'
69+
DD_APM_PROFILING_ADDITIONAL_ENDPOINTS='{\"https://trace.agent.datadoghq.com\": [\"apikey2\", \"apikey3\"], \"https://trace.agent.datadoghq.eu\": [\"apikey4\"]}'
7070
```
7171

7272
{{% /tab %}}
@@ -156,7 +156,7 @@ logs_config:
156156
use_http: true
157157
additional_endpoints:
158158
- api_key: "apiKey2"
159-
Host: "mydomain.datadoghq.com"
159+
Host: "agent-http-intake.logs.datadoghq.com"
160160
Port: 443
161161
is_reliable: true
162162
```
@@ -165,7 +165,7 @@ logs_config:
165165

166166
```bash
167167
DD_LOGS_CONFIG_USE_HTTP=true
168-
DD_LOGS_CONFIG_ADDITIONAL_ENDPOINTS="[{\"api_key\": \"apiKey2\", \"Host\": \"mydomain.datadoghq.com\", \"Port\": 443, \"is_reliable\": true}]"
168+
DD_LOGS_CONFIG_ADDITIONAL_ENDPOINTS="[{\"api_key\": \"apiKey2\", \"Host\": \"agent-http-intake.logs.datadoghq.com\", \"Port\": 443, \"is_reliable\": true}]"
169169
```
170170

171171
{{% /tab %}}
@@ -320,17 +320,17 @@ and add the relevant settings to `customAgentConfig`.
320320
## Note the `agents.useConfigMap` needs to be set to `true` for this parameter to be taken into account.
321321
customAgentConfig:
322322
additional_endpoints:
323-
"https://mydomain.datadoghq.com":
323+
"https://app.datadoghq.com":
324324
- apikey2
325325
- apikey3
326-
"https://mydomain.datadoghq.eu":
326+
"https://app.datadoghq.eu":
327327
- apikey4
328328

329329
logs_config:
330330
use_http: true
331331
additional_endpoints:
332332
- api_key: "apiKey2"
333-
Host: "mydomain.datadoghq.com"
333+
Host: "agent-http-intake.logs.datadoghq.com"
334334
Port: 443
335335
is_reliable: true
336336
```

0 commit comments

Comments
 (0)