1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
data.go 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
package volume
import (
"encoding/json"
"fmt"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/metricbeat/module/kubernetes"
)
func eventMapping(content []byte) ([]common.MapStr, error) {
events := []common.MapStr{}
var summary kubernetes.Summary
err := json.Unmarshal(content, &summary)
if err != nil {
return nil, fmt.Errorf("Cannot unmarshal json response: %s", err)
}
node := summary.Node
for _, pod := range summary.Pods {
for _, volume := range pod.Volume {
volumeEvent := common.MapStr{
mb.ModuleDataKey: common.MapStr{
"namespace": pod.PodRef.Namespace,
"node": common.MapStr{
"name": node.NodeName,
},
"pod": common.MapStr{
"name": pod.PodRef.Name,
},
},
"name": volume.Name,
"fs": common.MapStr{
"available": common.MapStr{
"bytes": volume.AvailableBytes,
},
"capacity": common.MapStr{
"bytes": volume.CapacityBytes,
},
"used": common.MapStr{
"bytes": volume.UsedBytes,
},
"inodes": common.MapStr{
"used": volume.InodesUsed,
"free": volume.InodesFree,
"count": volume.Inodes,
},
},
}
events = append(events, volumeEvent)
}
}
return events, nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v6.2.3

搜索帮助

0d507c66 1850385 C8b1a773 1850385