gpt4 book ai didi

python - Amazon lambda 不显示 python 日志

转载 作者:太空狗 更新时间:2023-10-30 01:18:59 24 4
gpt4 key购买 nike

我的 API(Python) 部署在 Amazon Lambda 上。问题是当我请求我的 API 时出现内部服务器错误。我可以跟踪 Lambda 日志,但看不到代码崩溃的实际错误或堆栈跟踪。当我跟踪日志时,我只得到以下输出。

START RequestId: 62341bgd-6231-11e8-8c5b-25793532a32u Version: $LATEST
END RequestId: 62341b0d-6231-1128-8r5b-2b793032a3ed
REPORT RequestId: 6234te0b-6rte-aaa8-au5a-21t93132r3rt Duration: 0.46 ms

如何查看我的 python api 的实际堆栈跟踪以进行调试?

最佳答案

Lambda 始终尝试将 Python 堆栈跟踪写入 CloudWatch。确保您的函数具有所需的权限:

    {
"Effect": "Allow",
"Action": [
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": "arn:aws:logs:eu-west-1:123456789012:*"
},
{
"Effect": "Allow",
"Action": "logs:CreateLogGroup",
"Resource": "*"
}

关于python - Amazon lambda 不显示 python 日志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50834184/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com