Auto Instrumentation of AWS java lambda #2064
Unanswered
vinitaaher
asked this question in
Q&A
Replies: 1 comment 7 replies
-
Hi @vinitaaher - can you describe more precisely what you're trying? I see a java command there, is that the app that is creating an HTTP request to API gateway? We see the HTTP client span corresponding to what your application sent, this is expected. There is no way you would be able to see lambda spans in such a setup because Jaeger is running on your localhost, but lambda is running in cloud infrastructure and does not have access to it. To be able to see everything together, you will generally need to be running Jaeger in your infrastructure, and configure the Java agent to use the Jaeger exporter and point to it. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am doing auto instrumentation for AWS java lambda. I have created one AWS lambda and accessing this lambda in myapp using API Gateway.When I see traces in jaeger , I am able to see only one span for http url only. But I want see 2 span there ,one for HTTP req. and another for lambda function.
Beta Was this translation helpful? Give feedback.
All reactions