Expose puddle.Pool's EmptyAcquireWaitTime in pgxpool's Stats

Addresses: https://github.com/jackc/pgx/issues/2205
pull/2208/head
Vamshi Aruru 2024-12-26 13:46:49 +05:30
parent bcf3fbd780
commit 12b37f3218
1 changed files with 7 additions and 0 deletions

View File

@ -82,3 +82,10 @@ func (s *Stat) MaxLifetimeDestroyCount() int64 {
func (s *Stat) MaxIdleDestroyCount() int64 {
return s.idleDestroyCount
}
// EmptyAcquireWaitTime returns the cumulative time waited for successful acquires
// from the pool for a resource to be released or constructed because the pool was
// empty.
func (s *Stat) EmptyAcquireWaitTime() time.Duration {
return s.s.EmptyAcquireWaitTime()
}