mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
26 lines
468 B
Go
26 lines
468 B
Go
package store
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
type EtcdStats struct {
|
|
// Number of get requests
|
|
Gets uint64 `json:"gets"`
|
|
|
|
// Number of sets requests
|
|
Sets uint64 `json:"sets"`
|
|
|
|
// Number of delete requests
|
|
Deletes uint64 `json:"deletes"`
|
|
|
|
// Number of testAndSet requests
|
|
TestAndSets uint64 `json:"testAndSets"`
|
|
}
|
|
|
|
// Stats returns the basic statistics information of etcd storage
|
|
func (s *Store) Stats() []byte {
|
|
b, _ := json.Marshal(s.BasicStats)
|
|
return b
|
|
}
|