1 Star 0 Fork 0

sqos/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
data.go 913 Bytes
一键复制 编辑 原始数据 按行查看 历史
package cluster_health
import (
"encoding/json"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
)
type Timecheck struct {
RoundStatus string `json:"round_status"`
Epoch int64 `json:"epoch"`
Round int64 `json:"round"`
}
type Output struct {
OverallStatus string `json:"overall_status"`
Timechecks Timecheck `json:"timechecks"`
}
type HealthRequest struct {
Status string `json:"status"`
Output Output `json:"output"`
}
func eventMapping(content []byte) common.MapStr {
var d HealthRequest
err := json.Unmarshal(content, &d)
if err != nil {
logp.Err("Error: ", err)
}
return common.MapStr{
"overall_status": d.Output.OverallStatus,
"timechecks": common.MapStr{
"epoch": d.Output.Timechecks.Epoch,
"round": common.MapStr{
"value": d.Output.Timechecks.Round,
"status": d.Output.Timechecks.RoundStatus,
},
},
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqos/beats.git
git@gitee.com:sqos/beats.git
sqos
beats
beats
v5.5.0

搜索帮助