@jaypie/constructs 1.1.36-beta.2 → 1.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +4 -0
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +4 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +2 -2
package/dist/esm/index.js
CHANGED
|
@@ -354,10 +354,14 @@ class JaypieLambda extends Construct {
|
|
|
354
354
|
// Set Datadog environment variables
|
|
355
355
|
Object.assign(environment, {
|
|
356
356
|
DD_API_KEY_SECRET_ARN: resolvedDatadogApiKeyArn,
|
|
357
|
+
DD_ENHANCED_METRICS: "true",
|
|
357
358
|
DD_ENV: process.env.PROJECT_ENV || "",
|
|
359
|
+
DD_PROFILING_ENABLED: "false",
|
|
360
|
+
DD_SERVERLESS_APPSEC_ENABLED: "false",
|
|
358
361
|
DD_SERVICE: process.env.PROJECT_SERVICE || "",
|
|
359
362
|
DD_SITE: CDK$2.DATADOG.SITE,
|
|
360
363
|
DD_TAGS: `${CDK$2.TAG.SPONSOR}:${process.env.PROJECT_SPONSOR || ""}`,
|
|
364
|
+
DD_TRACE_OTEL_ENABLED: "false",
|
|
361
365
|
});
|
|
362
366
|
}
|
|
363
367
|
// Configure ParamsAndSecrets layer
|