-
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! |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
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.