Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"errorType":"Error","errorMessage":"Hello","trace":["Error: Hello"," at handle (/var/task/throw-error.js:XXX:XXX)"," at /var/task/node_modules/datadog-lambda-js/dist/utils/handler.js:XXX:XXX"," at traceListenerOnWrap (/var/task/node_modules/datadog-lambda-js/dist/index.js:XXX:XXX)"," at BufferedInvokeProcessor.wrappedFunc [as handler] (/var/task/node_modules/datadog-lambda-js/dist/index.js:XXX:XXX)"," at async BufferedInvokeProcessor.processInvoke (file:///var/runtime/index.mjs:XXX:XXX)"," at async _Runtime.processSingleConcurrent (file:///var/runtime/index.mjs:XXX:XXX)"," at async _Runtime.start (file:///var/runtime/index.mjs:XXX:XXX)"," at async ignition (file:///var/runtime/index.mjs:XXX:XXX)"]}
{"errorType":"Error","errorMessage":"Hello","trace":["Error: Hello"," at handle (/var/task/throw-error.js:XXX:XXX)"," at /var/task/node_modules/datadog-lambda-js/dist/utils/handler.js:XXX:XXX"," at traceListenerOnWrap (/var/task/node_modules/datadog-lambda-js/dist/index.js:XXX:XXX)"," at BufferedInvokeProcessor.wrappedFunc [as handler] (/var/task/node_modules/datadog-lambda-js/dist/index.js:XXX:XXX)"," at async BufferedInvokeProcessor.processInvoke (file:///var/runtime/index.mjs:XXX:XXX)"," at async _Runtime.processSingleConcurrent (file:///var/runtime/index.mjs:XXX:XXX)"," at async _Runtime.start (file:///var/runtime/index.mjs:XXX:XXX)"," at async ignition (file:///var/runtime/index.mjs:XXX:XXX)"],"requestId":"XXXX"}
5 changes: 4 additions & 1 deletion scripts/normalize_integration_logs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ repo_dir=$(dirname "$scripts_dir")
function filter_runtime_noise() {
sed '/preview runtime version and should not be used for production workloads/d' |
sed '/DEP0205.*module\.register()/d' |
sed '/node --trace-deprecation.*where the warning was created/d'
sed '/node --trace-deprecation.*where the warning was created/d' |
# runtime_worker_pool_initializing's workerCount reflects the host's visible CPU
# count, not anything the library controls, so it can't be pinned in a golden.
sed '/"event":"runtime_worker_pool_initializing"/d'
}

if [ "$input_format" = formatted ]; then
Expand Down
Loading