Skip to content

Commit 4895acf

Browse files
authoredDec 6, 2024··
feat: Abort instrumenting Lambda if runtime is unsupported (#348)
1 parent 353f1f2 commit 4895acf

File tree

4 files changed

+49
-5
lines changed

4 files changed

+49
-5
lines changed
 

‎src/datadog-lambda.ts

+14-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class DatadogLambda extends Construct {
8686
}
8787

8888
if (baseProps.addLayers) {
89-
applyLayers(
89+
const errors = applyLayers(
9090
this.scope,
9191
region,
9292
lambdaFunction,
@@ -96,16 +96,28 @@ export class DatadogLambda extends Construct {
9696
this.props.dotnetLayerVersion,
9797
this.props.useLayersFromAccount,
9898
);
99+
if (errors.length > 0) {
100+
log.warn(
101+
`Failed to apply layers to the Lambda function ${lambdaFunction.functionName}. Skipping instrumenting it.`,
102+
);
103+
continue;
104+
}
99105
}
100106

101107
if (baseProps.extensionLayerVersion !== undefined) {
102-
applyExtensionLayer(
108+
const errors = applyExtensionLayer(
103109
this.scope,
104110
region,
105111
lambdaFunction,
106112
baseProps.extensionLayerVersion,
107113
this.props.useLayersFromAccount,
108114
);
115+
if (errors.length > 0) {
116+
log.warn(
117+
`Failed to apply extention layer to the Lambda function ${lambdaFunction.functionName}. Skipping instrumenting it.`,
118+
);
119+
continue;
120+
}
109121
}
110122

111123
if (baseProps.redirectHandler) {

‎src/layer.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ export function applyLayers(
4242
const isARM = lam.architecture?.dockerPlatform === Architecture.ARM_64.dockerPlatform;
4343

4444
if (lambdaRuntimeType === undefined || lambdaRuntimeType === RuntimeType.UNSUPPORTED) {
45-
log.debug(`Unsupported runtime: ${runtime}`);
45+
const error = `Unsupported runtime: ${runtime}`;
46+
log.warn(error);
47+
errors.push(error);
4648
return errors;
4749
}
4850

@@ -111,7 +113,9 @@ export function applyExtensionLayer(
111113
const accountId = useLayersFromAccount;
112114

113115
if (lambdaRuntimeType === undefined || lambdaRuntimeType === RuntimeType.UNSUPPORTED) {
114-
log.debug(`Unsupported runtime: ${runtime}`);
116+
const error = `Unsupported runtime: ${runtime}`;
117+
log.warn(error);
118+
errors.push(error);
115119
return errors;
116120
}
117121

‎test/datadog-lambda.spec.ts

+27
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,7 @@ describe("addLambdaFunctions", () => {
465465
},
466466
});
467467
});
468+
468469
it("doesn't give lambdas secret read access to the given apiKeySecretArn if grantSecretReadAccess is false", () => {
469470
const app = new App();
470471
const stack = new Stack(app, "stack");
@@ -485,6 +486,32 @@ describe("addLambdaFunctions", () => {
485486
datadogLambda.addLambdaFunctions([hello], stack);
486487
Template.fromStack(stack).resourceCountIs("AWS::IAM::Policy", 0);
487488
});
489+
490+
it("doesn't instrument the lambda function if Node version is unresolved", () => {
491+
const app = new App();
492+
const stack = new Stack(app, "stack");
493+
const hello = new lambda.Function(stack, "HelloHandler", {
494+
// unresolved Node runtime. Its name is like '${Token[TOKEN.330]}'.
495+
runtime: lambda.determineLatestNodeRuntime(stack),
496+
code: lambda.Code.fromInline("test"),
497+
handler: "hello.handler",
498+
});
499+
const datadogLambda = new DatadogLambda(stack, "Datadog", {
500+
nodeLayerVersion: NODE_LAYER_VERSION,
501+
extensionLayerVersion: EXTENSION_LAYER_VERSION,
502+
addLayers: true,
503+
apiKeySecretArn: "arn:aws:secretsmanager:sa-east-1:123:secret:test-key",
504+
enableDatadogTracing: false,
505+
flushMetricsToLogs: false,
506+
logLevel: "debug",
507+
grantSecretReadAccess: false,
508+
forwarderArn: "forwarder-arn",
509+
});
510+
datadogLambda.addLambdaFunctions([hello], stack);
511+
Template.fromStack(stack).resourceCountIs("AWS::Logs::SubscriptionFilter", 0);
512+
const lambdaFunction = Object.values(Template.fromStack(stack).findResources("AWS::Lambda::Function"))[0];
513+
expect(lambdaFunction.Properties.hasOwnProperty("Tags")).toBe(false);
514+
});
488515
});
489516

490517
describe("redirectHandler", () => {

‎test/layer.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,8 @@ describe("applyLayers", () => {
264264
Template.fromStack(stack).hasResourceProperties("AWS::Lambda::Function", {
265265
Layers: Match.absent(),
266266
});
267-
expect(errors.length).toEqual(0);
267+
expect(errors.length).toEqual(1);
268+
expect(errors[0]).toEqual("Unsupported runtime: go1.x");
268269
});
269270

270271
it("doesn't add layer to container image Lambda without extension or layer versions", () => {

0 commit comments

Comments
 (0)
Please sign in to comment.