英文:
Enable XRAY on a lambda function using AWS Amplify
问题
以下是翻译好的内容:
什么是在使用AWS Amplify启用Lambda函数上的XRAY的推荐方式?
- 编辑Amplify生成的CloudFormation?
- 在部署后使用CDK以某种方式编辑该函数?如何做?
- 其他方法?
英文:
What is the recommended way to do enable XRAY on a Lambda function using AWS Amplify?
- Edit the CloudFormation that Amplify generates?
- Use CDK somehow to edit the function after it's been deployed? How?
- Some other way?
答案1
得分: 1
-
在由Amplify生成的CloudFormation中编辑,将TracingConfig的模式设置为'Active'在AWS::Lambda::Function中。
-
确保你的Lambda角色具有X-Ray的权限:
"xray:PutTraceSegments",
"xray:PutTelemetryRecords"
英文:
>Edit the CloudFormation that Amplify generates
-
Set TracingConfig's mode to 'Active` in the AWS::Lambda::Function.
-
Make sure your Lambda's role has permissions for X-Ray
"xray:PutTraceSegments",
"xray:PutTelemetryRecords"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论