Searched defs:DBStats (Results 1 – 1 of 1) sorted by relevance
1190 type DBStats struct { struct1191 MaxOpenConnections int // Maximum number of open connections to the database.1194 OpenConnections int // The number of established connections both in use and idle.1195 InUse int // The number of connections currently in use.1196 Idle int // The number of idle connections.1199 WaitCount int64 // The total number of connections waited for.1200 WaitDuration time.Duration // The total time blocked waiting for a new connection.1201 MaxIdleClosed int64 // The total number of connections closed due to SetMaxIdleConns.1202 …axIdleTimeClosed int64 // The total number of connections closed due to SetConnMaxIdleTime.1203 …axLifetimeClosed int64 // The total number of connections closed due to SetConnMaxLifetime.