MaxIdleDestroyCount returns the cumulative count of connections destroyed because they exceeded MaxConnIdleTime.
()
| 80 | // MaxIdleDestroyCount returns the cumulative count of connections destroyed because |
| 81 | // they exceeded MaxConnIdleTime. |
| 82 | func (s *Stat) MaxIdleDestroyCount() int64 { |
| 83 | return s.idleDestroyCount |
| 84 | } |
| 85 | |
| 86 | // EmptyAcquireWaitTime returns the cumulative time waited for successful acquires |
| 87 | // from the pool for a resource to be released or constructed because the pool was |
no outgoing calls