bugsnag-python icon indicating copy to clipboard operation
bugsnag-python copied to clipboard

Add warning when lambda function may timeout

Open imjoehaines opened this issue 2 years ago • 0 comments

Goal

Adds a notify for lambda functions when they are likely to timeout — by default this happens 1 second before the timeout occurs but can be configured with the new lambda_timeout_notify_ms option:

@bugsnag.aws_lambda_handler(lambda_timeout_notify_ms=2000)
def my_handler(event, context):
    pass

There's some complexity here because the notify happens off of the main thread so any thread-local data wouldn't be present in the event. In order to include all of the relevant information (e.g. metadata, breadcrumbs, feature flags) we need to manually copy it over into the timer thread

imjoehaines avatar Apr 05 '24 12:04 imjoehaines