mirror of
https://github.com/PeernetOfficial/Abstraction.git
synced 2026-07-21 04:47:50 +01:00
12 lines
198 B
Go
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
|
|
}
|