Capture common HTTP attributes from API Gateway proxy events in Lambda instrumentor (#1233)

This commit is contained in:
Finlay
2022-11-02 04:27:09 +00:00
committed by GitHub
parent a8cf644960
commit 36264e97c3
6 changed files with 297 additions and 2 deletions

View File

@ -15,3 +15,7 @@
def handler(event, context):
return "200 ok"
def rest_api_handler(event, context):
return {"statusCode": 200, "body": "200 ok"}