penghuazhou commented on issue #36916: URL: https://github.com/apache/shardingsphere/issues/36916#issuecomment-3435922806
I want to monitor hikariPool, as sharding-shpere have use it. hikariPool metrics below. ``` hikaricp.connections.pending: The number of threads waiting to acquire a connection. This value should ideally be zero. If it frequently exceeds zero, it may indicate that the connection pool is too small and the poolSize needs to be increased. hikaricp.connections.active: The number of active connections currently in use. hikaricp.connections.idle: The number of idle connections currently in the pool. If this value is very close to hikaricp.connections.max, it may indicate that the connection pool is set too large. hikaricp.connections.max: The maximum number of connections in the connection pool, configured by the user. hikaricp.connections.usage: The time (in milliseconds) taken for a connection to be retrieved from the pool and returned, which can be used to diagnose slow SQL or long transaction issues. hikaricp.connections.creation: Connection creation time (ms), which can be used to analyze connection creation performance. hikaricp.connections.timeout: The number of timeouts during connection creation ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
