Home
last modified time | relevance | path

Searched defs:DBStats (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/database/sql/
Dsql.go1190 type DBStats struct { struct
1191 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.