1 Star 0 Fork 2

who7708/etcd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stats.go 468 Bytes
一键复制 编辑 原始数据 按行查看 历史
Xiang Li 提交于 2013-08-02 12:45 . gofmt
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
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/who7708/etcd.git
git@gitee.com:who7708/etcd.git
who7708
etcd
etcd
v0.1.0

搜索帮助