Created
November 26, 2015 12:38
-
-
Save hispanic/cf760a7352649c851986 to your computer and use it in GitHub Desktop.
HttpClient Logging - Connection re-used
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Connection request: [route: {}->http://myhost:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100] | |
| Connection leased: [id: 1][route: {}->http://myhost:8080][total kept alive: 0; route allocated: 1 of 50; total allocated: 1 of 100] |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When a connection is requested and leased, if an existing allocation (connection) for the route is re-used, “total kept alive” will decrement, but the allocation counts will hold steady.
For more information, please see How to Read HttpClient Logging and Prevent Connection Leaks.