Aws Xray support for apache HttpAsyncClientBuilder

0

We recently upgraded our service backend from Elasticsearch to Opensearch. The elasticsearch client used the apache HttpClient and HttpClientBuilder to make http calls. I was able to use the aws xray TracedHttpClient in the client chain in order to trace all http requests made to Elasticsearch, as shown below

  @Override
  protected HttpClientBuilder configureHttpClient(HttpClientBuilder builder) {
    return new HttpClientBuilder() {
      @Override
      public CloseableHttpClient build() {
        return new TracedHttpClient(builder.build());
      }
    };
  }

However, the Opensearch java clients use the apache HttpAsyncClient and HttpAsyncClientBuilder, which is incompatible with the TracedHttpClient.

Other than making my own implementation of a TracedHttpAsyncClient, is there any other way to add xray tracing through an HttpAsyncClient for every request?

已提问 1 年前267 查看次数
1 回答
0
已接受的回答

The library instrumentations (such as HttpAsyncClient) are wrapping the target with tracing APIs. If XRay SDK does not provide the library support, user can manage that by himself. It is inconvenient for user, so, please try to onboard ADOT, there are more powerful contributors provide new libraries support.

已回答 10 个月前
  • Thanks for the suggestions! I'll look into using ADOT and see if that can solve our problems

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则