1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
data.go 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
韦钰迪 提交于 2017-11-30 19:32 . Add ceph osd_df to metricbeat (#5606)
package osd_df
import (
"encoding/json"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
)
type Node struct {
ID int64 `json:"id"`
Name string `json:"name"`
Used int64 `json:"kb_used"`
Available int64 `json:"kb_avail"`
Total int64 `json:"kb"`
PgNum int64 `json:"pgs"`
DeviceClass string `json:"device_class"`
}
type Output struct {
Nodes []Node `json:"nodes"`
}
type OsdDfRequest struct {
Status string `json:"status"`
Output Output `json:"output"`
}
func eventsMapping(content []byte) ([]common.MapStr, error) {
var d OsdDfRequest
err := json.Unmarshal(content, &d)
if err != nil {
logp.Err("Error: ", err)
return nil, err
}
nodeList := d.Output.Nodes
//osd node list
events := []common.MapStr{}
for _, node := range nodeList {
nodeInfo := common.MapStr{
"id": node.ID,
"name": node.Name,
"total.byte": node.Total,
"used.byte": node.Used,
"available.byte": node.Available,
"device_class": node.DeviceClass,
"pg_num": node.PgNum,
}
if 0 != node.Total {
var usedPct float64
usedPct = float64(node.Used) / float64(node.Total)
nodeInfo["used.pct"] = usedPct
}
events = append(events, nodeInfo)
}
return events, nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v6.2.3

搜索帮助

0d507c66 1850385 C8b1a773 1850385