Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add CloudWatch Lambda Insights to serverless config?

How to add CloudWatch Lambda Insights to serverless config? I don't want to do this manually, so I expect this to be an option.

I've added tracing like this:

tracing:
    lambda: true

But this only enables AWS X-ray and not the other option.

enter image description here

like image 758
imacbest Avatar asked Dec 09 '20 13:12

imacbest


1 Answers

I found out that it isn't a setting but a layer in the lambda. I managed to create it with this piece of code:

provider:
  name: aws
  iamManagedPolicies:
    - "arn:aws:iam::aws:policy/CloudWatchLambdaInsightsExecutionRolePolicy"

functions:
  functionName:
    layers:
      - arn:aws:lambda:<REGION>:580247275435:layer:LambdaInsightsExtension:<VERSION>

The latest version of the lambda insights layer can be found at: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Lambda-Insights-extension-versions.html

like image 86
imacbest Avatar answered Nov 25 '22 03:11

imacbest