1 Star 0 Fork 0

sqos/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
data.go 854 Bytes
一键复制 编辑 原始数据 按行查看 历史
Berfin Sarı 提交于 2017-10-17 14:46 . Add etcd module (#4970) (#5176)
package leader
import (
"encoding/json"
"github.com/elastic/beats/libbeat/common"
)
type Counts struct {
Success int64 `json:"success"`
Fail int64 `json:"fail"`
}
type Latency struct {
Average float64 `json:"average"`
Current float64 `json:"current"`
Maximum float64 `json:"maximum"`
Minimum int64 `json:"minimum"`
StandardDeviation float64 `json:"standardDeviation"`
}
type FollowersID struct {
Latency Latency `json:"latency"`
Counts Counts `json:"counts"`
}
type Leader struct {
Followers map[string]FollowersID `json:"followers"`
Leader string `json:"leader"`
}
func eventMapping(content []byte) common.MapStr {
var data Leader
json.Unmarshal(content, &data)
event := common.MapStr{
"followers": data.Followers,
"leader": data.Leader,
}
return event
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqos/beats.git
git@gitee.com:sqos/beats.git
sqos
beats
beats
v6.2.4

搜索帮助