Checking what consumes AWS lambda

后端 未结 2 1574
太阳男子
太阳男子 2021-01-15 21:53

I have my AWS lambda, lets call it Lambda-X.

There are other lambdas, I don\'t know their names, that consumes my Lambda-X via API call.

How do I determine t

2条回答
  •  时光说笑
    2021-01-15 22:01

    Take a look at using AWS X-Ray to generate traces for your lambda invocations. You'll get a bit more information than CloudWatch logs will provide, and you can trace things across services to better understand where latency might be coming from. Here's a blog post with an example: https://docs.aws.amazon.com/xray/latest/devguide/xray-services-lambda.html

提交回复
热议问题