@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/cjs/index.cjs
CHANGED
|
@@ -386,10 +386,14 @@ class JaypieLambda extends constructs.Construct {
|
|
|
386
386
|
// Set Datadog environment variables
|
|
387
387
|
Object.assign(environment, {
|
|
388
388
|
DD_API_KEY_SECRET_ARN: resolvedDatadogApiKeyArn,
|
|
389
|
+
DD_ENHANCED_METRICS: "true",
|
|
389
390
|
DD_ENV: process.env.PROJECT_ENV || "",
|
|
391
|
+
DD_PROFILING_ENABLED: "false",
|
|
392
|
+
DD_SERVERLESS_APPSEC_ENABLED: "false",
|
|
390
393
|
DD_SERVICE: process.env.PROJECT_SERVICE || "",
|
|
391
394
|
DD_SITE: cdk.CDK.DATADOG.SITE,
|
|
392
395
|
DD_TAGS: `${cdk.CDK.TAG.SPONSOR}:${process.env.PROJECT_SPONSOR || ""}`,
|
|
396
|
+
DD_TRACE_OTEL_ENABLED: "false",
|
|
393
397
|
});
|
|
394
398
|
}
|
|
395
399
|
// Configure ParamsAndSecrets layer
|