|
I'm using a connection pool, and it's working great. As I've had to scale, there have been a few times where I've needed to add more connections to the pool, but this has mostly been guesswork. I'd like to have a more robust way for tracking how often I'm running out of connections, even if that's just a basic way for me to check the number of available connections. Suggestions appreciated! |
Answered by
elprans
Nov 7, 2021
Replies: 1 comment
|
Monitoring pool size is a somewhat overlooked area, I opened #849 with methods to inspect the current, min, max and idle pool size. With those you should be able to implement a background task checking for pool state and reporting it however you like. |
0 replies
Answer selected by
jgayfer
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Monitoring pool size is a somewhat overlooked area, I opened #849 with methods to inspect the current, min, max and idle pool size. With those you should be able to implement a background task checking for pool state and reporting it however you like.