Files
Abstraction/vendor/github.com/akrylysov/pogreb/metrics.go
2022-12-11 06:18:00 +00:00

12 lines
198 B
Go

package pogreb
import "expvar"
// Metrics holds the DB metrics.
type Metrics struct {
Puts expvar.Int
Dels expvar.Int
Gets expvar.Int
HashCollisions expvar.Int
}