Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Cloud Tracing payload request/response support #562

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ To further configure your plugin, use the following custom parameters in your `s
| `enableASM` | Enable [Datadog Application Security Management (ASM)][19] on the Lambda function. Requires the Datadog extension to be present (using `addExtension` or manually added) and `enableDDTracing`. Defaults to `false`. |
| `enableDDLogs` | Enable Datadog log collection using the Lambda Extension. Defaults to `true`. Note: This setting has no effect on logs sent by the Datadog Forwarder. |
| `monitors` | When defined, the Datadog plugin configures monitors for the deployed function. Requires setting `DATADOG_API_KEY` and `DATADOG_APP_KEY` in your environment. To learn how to define monitors, see [To Enable and Configure a Recommended Serverless Monitor](#to-enable-and-configure-a-recommended-serverless-monitor). |
| `captureLambdaPayload` | [Captures incoming and outgoing AWS Lambda payloads][17] in the Datadog APM spans for Lambda invocations. Defaults to `false`. |
| `captureLambdaPayload` | [Captures incoming and outgoing AWS Lambda payloads][17] in the Datadog APM spans for Lambda invocations. Defaults to `false`.
enricop89 marked this conversation as resolved.
Show resolved Hide resolved
| `captureCloudRequestPayload` | [Captures request data exchanged between your application and AWS services][20] in the Datadog APM spans. Values: `all`. To [protect sensitive data][21], use JSON Path syntax.. Defaults to `false`.
enricop89 marked this conversation as resolved.
Show resolved Hide resolved
enricop89 marked this conversation as resolved.
Show resolved Hide resolved
| `captureCloudResponsePayload` | [Captures response data exchanged between your application and AWS services][20] in the Datadog APM spans.Values: `all`. To [protect sensitive data][21], use JSON Path syntax.`""`. |
enricop89 marked this conversation as resolved.
Show resolved Hide resolved
| `enableSourceCodeIntegration` | Enable [Datadog Source Code Integration][18] for the function. Defaults to `true`. |
| `uploadGitMetadata` | Enable Git metadata uploading for the function, as a part of source code integration. Set this to false if you have the Datadog Github Integration installed, as it renders Git metadata uploading unnecessary. Defaults to `true`. |
| `subscribeToAccessLogs` | Enable automatic subscription of the Datadog Forwarder to API Gateway access log groups. Requires setting `forwarderArn`. Defaults to `true`. |
Expand Down Expand Up @@ -263,3 +265,5 @@ This product includes software developed at Datadog (<https://www.datadoghq.com/
[17]: https://www.datadoghq.com/blog/troubleshoot-lambda-function-request-response-payloads/
[18]: https://docs.datadoghq.com/integrations/guide/source-code-integration
[19]: https://docs.datadoghq.com/security/application_security/
[20]: https://docs.datadoghq.com/tracing/guide/aws_payload_tagging/
[21]: https://docs.datadoghq.com/tracing/guide/aws_payload_tagging/#protect-sensitive-information
24 changes: 24 additions & 0 deletions integration_tests/correct_extension_apigateway_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "py_handler.hello"
Expand Down Expand Up @@ -312,6 +314,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "py_handler.hello"
Expand Down Expand Up @@ -362,6 +366,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "py_handler.hello"
Expand Down Expand Up @@ -412,6 +418,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "js_handler.hello"
Expand Down Expand Up @@ -462,6 +470,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "js_handler.hello"
Expand Down Expand Up @@ -512,6 +522,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "js_handler.hello"
Expand Down Expand Up @@ -562,6 +574,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -612,6 +626,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -662,6 +678,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -712,6 +730,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -762,6 +782,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
}
Expand Down Expand Up @@ -810,6 +832,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
}
Expand Down
28 changes: 28 additions & 0 deletions integration_tests/correct_extension_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "py_handler.hello"
Expand Down Expand Up @@ -349,6 +351,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "py_handler.hello"
Expand Down Expand Up @@ -401,6 +405,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "py_handler.hello"
Expand Down Expand Up @@ -453,6 +459,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "js_handler.hello"
Expand Down Expand Up @@ -505,6 +513,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "js_handler.hello"
Expand Down Expand Up @@ -557,6 +567,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev",
"DD_LAMBDA_HANDLER": "js_handler.hello"
Expand Down Expand Up @@ -642,6 +654,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -697,6 +711,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -749,6 +765,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -804,6 +822,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -856,6 +876,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -908,6 +930,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
Expand Down Expand Up @@ -960,6 +984,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
}
Expand Down Expand Up @@ -1010,6 +1036,8 @@
"DD_LOGS_INJECTION": false,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_SERVICE": "dd-sls-plugin-integration-test",
"DD_ENV": "dev"
}
Expand Down
28 changes: 26 additions & 2 deletions integration_tests/correct_forwarder_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_LAMBDA_HANDLER": "py_handler.hello"
}
},
Expand Down Expand Up @@ -561,6 +563,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_LAMBDA_HANDLER": "py_handler.hello"
}
},
Expand Down Expand Up @@ -616,6 +620,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_LAMBDA_HANDLER": "py_handler.hello"
}
},
Expand Down Expand Up @@ -671,6 +677,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_LAMBDA_HANDLER": "js_handler.hello"
}
},
Expand Down Expand Up @@ -726,6 +734,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_LAMBDA_HANDLER": "js_handler.hello"
}
},
Expand Down Expand Up @@ -781,6 +791,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"DD_LAMBDA_HANDLER": "js_handler.hello"
}
},
Expand Down Expand Up @@ -886,6 +898,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper"
}
},
Expand Down Expand Up @@ -938,6 +952,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper"
}
},
Expand Down Expand Up @@ -990,6 +1006,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper"
}
},
Expand Down Expand Up @@ -1042,6 +1060,8 @@
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": "",
"AWS_LAMBDA_EXEC_WRAPPER": "/opt/datadog_wrapper"
}
},
Expand Down Expand Up @@ -1093,7 +1113,9 @@
"DD_MERGE_XRAY_TRACES": false,
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": ""
}
},
"Role": {
Expand Down Expand Up @@ -1144,7 +1166,9 @@
"DD_MERGE_XRAY_TRACES": false,
"DD_LOGS_INJECTION": true,
"DD_SERVERLESS_LOGS_ENABLED": true,
"DD_CAPTURE_LAMBDA_PAYLOAD": false
"DD_CAPTURE_LAMBDA_PAYLOAD": false,
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": "",
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": ""
}
},
"Role": {
Expand Down
Loading
Loading