Hi there,
Since upgrading the extension layer from v92 to v93 as well as the node layer version from 133 to 135, we've noticed two new behaviours:
Firstly, the error message in the issue title is now logging as an Error, I believe this is an intentional change as of PR #1036, though it doesn't quite match the details in that PR.
However secondly and more concerningly, we've seen a sharp increase in the amount of these errors coming through, to note, nothing else in our config has changed. We are still seeing successful APM traces and spans being ingested, at roughly the same volumes, but these logs would tell me we're dropping a significant amount of requests.
We're using the datadog-cdk-constructs-v2 to create our lambda wrapper and our config is here:
const dd = new DatadogLambda(stack, `Datadog-${serviceName}`, {
nodeLayerVersion: 135,
extensionLayerVersion: 93,
apiKey,
site,
env: app.stage,
service: serviceName,
captureLambdaPayload: false,
enableDatadogTracing: true,
enableMergeXrayTraces: true,
datadogAppSecMode: DatadogAppSecMode.EXTENSION,
sourceCodeIntegration: false,
})
Happy to provide more information if needed.