AWS Lambda Python 3.7运行时异常日志记录

时间:2019-01-02 07:48:51

标签: python python-3.x aws-lambda amazon-cloudwatch

使用Python 3.7运行时引发的未处理异常似乎没有像在Python 3.6中那样被记录到CloudWatch。您如何在Python 3.7中设置记录器以捕获此信息?

Also posted on AWS forum

要复制:

1。创建如下的lambda函数:

import logging
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
def lambda_handler(event, context):
logger.info("This shows fine")
raise Exception("I failed")  

2。使用Python 3.6运行时运行此功能

START RequestId: a2b6038b-0e5f-11e9-9226-9dfc35a22dcc Version: $LATEST
[INFO]  2019-01-02T07:25:52.797Z    a2b6038b-0e5f-11e9-9226-9dfc35a22dcc //This shows fine
 I failed: Exception
Traceback (most recent call last):
File "/var/task/lambda_function.py", line 9, in lambda_handler
        raise Exception("I failed")
Exception: I failed

END RequestId: a2b6038b-0e5f-11e9-9226-9dfc35a22dcc
REPORT RequestId: a2b6038b-0e5f-11e9-9226-9dfc35a22dcc  Duration: 1.12 ms   Billed Duration: 100 ms     Memory Size: 128 MB Max Memory Used: 21 MB

2。切换到Python 3.7运行时并再次运行...没有堆栈跟踪

    START RequestId: 3840aa8e-0e5d-11e9-bece-45a2022a53c6 Version: $LATEST
    [INFO]  2019-01-02T07:08:35.170Z    3840aa8e-0e5d-11e9-bece-45a2022a53c6    This shows fine

    END RequestId: 3840aa8e-0e5d-11e9-bece-45a2022a53c6
    REPORT RequestId: 3840aa8e-0e5d-11e9-bece-45a2022a53c6  Duration: 2.20 ms   Billed Duration: 100 ms     Memory Size: 128 MB Max Memory Used: 20 MB  

3 个答案:

答案 0 :(得分:4)

是的,我已经注意到了。 为了克服这个问题,我使用装饰器。

def log_errors(func: Callable[[dict, dict], None]):
    def wrapper(*args, **kwargs):
        try:
            func(*args, **kwargs)
        except Exception as err:
            warning(traceback.format_exc())
            raise err

    return wrapper

用法:

@log_errors
def handler(event, context):
...

答案 1 :(得分:1)

这是AWS Lambda中的错误。我注意到它在12月中旬提交了一个问题。回复包括以下内容:“我想告诉您,这已被确定为真正的问题,Lambda团队目前正在努力解决此问题。但是,不幸的是,我没有关于何时解决此问题的预计到达时间。”

我的解决方案是恢复到python3.6运行时,直到Amazon对其进行修复。

答案 2 :(得分:0)

这很奇怪,因为Exception是内置函数,可以同时在3.6和3.7上使用。

作为一种解决方法,我建议创建自定义异常。这是一个简单的例子。

test.py

class Error(Exception):
    pass

class CustomException(Error):
    pass

raise CustomException("I failed")

这是运行时的结果。

TK$ python3 test.py 

Traceback (most recent call last):
 File "test.py", line 7, in <module>
    raise CustomException("I failed")
__main__.CustomException: I failed