问题
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.
回答1:
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
来源:https://stackoverflow.com/questions/65217527/how-to-add-cloudwatch-lambda-insights-to-serverless-config