Hi there. We're using the Micronaut framework, which has it's own HTTP client and ExecutorService, both of which get nice metrics sent out to our prometheus setup.
This project seems to fall back to it's own ExecutorService + Ning's HTTP client, and as a result I don't have as much visibility when things so sideways.
Do you have any advice on how I should solve this? For another project, I had a place where I could plug in my own HTTP client wrapper + ExecutorService and that worked well. But here it doesn't look like that is the case, though I could be misreading the code.
Hi there. We're using the Micronaut framework, which has it's own HTTP client and
ExecutorService, both of which get nice metrics sent out to our prometheus setup.This project seems to fall back to it's own
ExecutorService+ Ning's HTTP client, and as a result I don't have as much visibility when things so sideways.Do you have any advice on how I should solve this? For another project, I had a place where I could plug in my own HTTP client wrapper +
ExecutorServiceand that worked well. But here it doesn't look like that is the case, though I could be misreading the code.