NewConnsCount returns the cumulative count of new connections opened.
()
| 68 | |
| 69 | // NewConnsCount returns the cumulative count of new connections opened. |
| 70 | func (s *Stat) NewConnsCount() int64 { |
| 71 | return s.newConnsCount |
| 72 | } |
| 73 | |
| 74 | // MaxLifetimeDestroyCount returns the cumulative count of connections destroyed |
| 75 | // because they exceeded MaxConnLifetime. |
no outgoing calls