将 AWS XRay HttpClientBuilder 与 Spring Webclient 集成
Integrate AWS XRay HttpClientBuilder with Spring Webclient
我正在使用 Spring Webclient 为我的外部调用微服务。我正在尝试将 AWS XRay 集成到我们的微服务中。但是要在 xray 中获取 Outgoing HTTP 调用的痕迹,我必须使用 XRay HttpClientBuilder。有什么方法可以将 XRAY HttpClientBuilder 与 webclient 集成?
XRay java SDK 目前仅支持 Apache 客户端的下游 HTTP 请求。或者,您可以查看 AWS Distro for OpenTelemetry Java 代理 (docs), which is a ready-to-use OpenTelemetry auto-instrumentation agent that's compatible with the X-Ray backend and supports Spring WebClient.
我正在使用 Spring Webclient 为我的外部调用微服务。我正在尝试将 AWS XRay 集成到我们的微服务中。但是要在 xray 中获取 Outgoing HTTP 调用的痕迹,我必须使用 XRay HttpClientBuilder。有什么方法可以将 XRAY HttpClientBuilder 与 webclient 集成?
XRay java SDK 目前仅支持 Apache 客户端的下游 HTTP 请求。或者,您可以查看 AWS Distro for OpenTelemetry Java 代理 (docs), which is a ready-to-use OpenTelemetry auto-instrumentation agent that's compatible with the X-Ray backend and supports Spring WebClient.