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年前268ビュー
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

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ