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?

demandé il y a un an267 vues
1 réponse
0
Réponse acceptée

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.

répondu il y a 10 mois
  • Thanks for the suggestions! I'll look into using ADOT and see if that can solve our problems

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions