Apache HTTP Client interceptor for use with HttpAsyncClient (original) (raw)
Hi there, I see there is a Micrometer implementation to track the time that http requests take using MicrometerHttpRequestExecutor, but in my project I'm executing these requests using CloseableHttpAsyncClient:
i.e. : myCloseableHttpAsyncClient.execute(req, cxt, callback);
Where:
- req is an HttpUriRequest obj
- cxt is a HttpClientContext obj
Is there any way to use Micrometer under this implementation?
Thanks!