-
Notifications
You must be signed in to change notification settings - Fork 39
Description
Expected Behavior
A Lambda invocation succeeds, and a trace is sent off to DataDog.
Actual Behavior
The DataDog tracing is throwing an exception after our function code completes successfully, causing the Lambda invocation to fail.
Steps to Reproduce the Problem
- Set up API GW and Lambdas using Serverless Framework.
- Add
serverless-plugin-datadogto send traces/logs to DataDog. - Configure
captureLambdaPayload: trueas per docs
We saw the issue when we updated to serverless-plugin-datadog v5.55.0; reverting to v5.49.0 (which we were running previously) fixed it again.
Specifications
- Datadog Lambda Layer version: 104
- Node version: 18
Stacktrace
2024-01-22T11:03:46.313Z 0f1e108f-1e91-46f6-9512-c46b3b3eaece ERROR Invoke Error {
"errorType": "TypeError",
"errorMessage": "Cannot read properties of undefined (reading 'substring')",
"stack": [
"TypeError: Cannot read properties of undefined (reading 'substring')",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:37:74)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at tagObject (/opt/nodejs/node_modules/datadog-lambda-js/utils/tag-object.js:61:17)",
" at TraceListener.onEndingInvocation (/opt/nodejs/node_modules/datadog-lambda-js/trace/listener.js:147:35)",
" at /opt/nodejs/node_modules/datadog-lambda-js/index.js:235:80",
" at step (/opt/nodejs/node_modules/datadog-lambda-js/index.js:44:23)",
" at Object.next (/opt/nodejs/node_modules/datadog-lambda-js/index.js:25:53)",
" at fulfilled (/opt/nodejs/node_modules/datadog-lambda-js/index.js:16:58)"
]
}
From my own digging this looks related to PR #430, where the following code appeared:
return currentSpan.setTag(key, redactVal(key, JSON.stringify(obj).substring(0, 5000)));
The MDN docs for JSON.stringify include this note:
JSON.stringify() can return undefined when passing in "pure" values like JSON.stringify(() => {}) or JSON.stringify(undefined).
I suspect we've been unlucky, and one of our request/response payloads may have an unexpected value at the depth cutoff of 10, leading to a substring method call on undefined.