Spring Boot 为AWS X-Ray配置RestTemplate

iswrvxsc  于 2023-08-04  发布在  Spring
关注(0)|答案(1)|浏览(123)

如何配置RestTemplate以使用AWS X-Ray SDK中提供的http客户端?
我在Spring 2.3.4版本中找到了一个例子:https://github.com/aws/aws-xray-sdk-java/issues/220的数据。
但是我使用的是Sping Boot 3.1.0版本,这个例子甚至不能编译。

unhi4e5o

unhi4e5o1#

您可以尝试OpenTelemetry Java SDK,因为它为Spring 3.1+ https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spring/spring-web/spring-web-3.1/library的RestTemplates提供了插装
OpenTelemetry通过AWS Distribution of OpenTelemetry与X-Ray配合使用。请看这里开始:https://aws-otel.github.io/docs/getting-started/java-sdk

相关问题