Commit 5212655
committed
fix(config): use correct DD_* environment variables
The Datadog SDK requires DD_* environment variables (DD_API_KEY,
DD_APP_KEY, DD_SITE) to function correctly. The previous implementation
used DATADOG_* variable names which never worked.
This fix changes the configuration to use the correct DD_* variable
names that the Datadog SDK actually reads and uses.
Breaking Change: Users must update their environment variables from
DATADOG_* to DD_* naming convention. The old DATADOG_* variables were
never functional.
Required changes:
- DATADOG_API_KEY → DD_API_KEY
- DATADOG_APP_KEY → DD_APP_KEY
- DATADOG_SITE → DD_SITE (optional, defaults to datadoghq.com)1 parent 98e6b27 commit 5212655
1 file changed
+10
-7
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
84 | | - | |
85 | | - | |
86 | | - | |
87 | | - | |
88 | | - | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
89 | 92 | | |
90 | | - | |
91 | | - | |
| 93 | + | |
| 94 | + | |
92 | 95 | | |
93 | 96 | | |
94 | 97 | | |
| |||
0 commit comments