You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Requesting diagnostics API for AsyncHttpClients. E. g. methods like:
int getActiveRequestCount();
int getPooledConnectionCount();
int getHostCountWithPooledRequests();
List<String> getActiveRequests();
List<String> getPooledConnectionHosts();
and so on.
Currently I'm trying to find a leak in a program which looks like a leak in async-http-client to me (AsyncHttpClient reports I hit maxConnections limit while netstat reports much lower number of open connections). If async-http-client had such diagnostics API, I could verify my hypothesis. Currently I have no idea whether problem is in AsyncHttpClient or I use AsyncHttpClient API incorrectly.
Such API would be also very useful for monitoring (to plot e. g. active request count).
The text was updated successfully, but these errors were encountered:
Requesting diagnostics API for
AsyncHttpClients
. E. g. methods like:and so on.
Currently I'm trying to find a leak in a program which looks like a leak in async-http-client to me (AsyncHttpClient reports I hit
maxConnections
limit whilenetstat
reports much lower number of open connections). If async-http-client had such diagnostics API, I could verify my hypothesis. Currently I have no idea whether problem is in AsyncHttpClient or I use AsyncHttpClient API incorrectly.Such API would be also very useful for monitoring (to plot e. g. active request count).
The text was updated successfully, but these errors were encountered: