Patrząc na kod źródłowy tutaj , wygląda na to, że możesz spojrzeć na:
pool.config.connectionLimit // passed in max size of the pool
pool._freeConnections.length // number of free connections awaiting use
pool._allConnections.length // number of connections currently created, including ones in use
pool._acquiringConnections.length // number of connections in the process of being acquired
Uwaga:Nowe połączenia są tworzone w razie potrzeby do maksymalnego rozmiaru puli, więc _freeConnections.length
może wynosić zero, ale jest o wiele więcej połączeń w limicie, więc następnym razem .getConnection()
zostanie wywołane, utworzy nowe połączenie.