1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cpu.go 2.10 KB
一键复制 编辑 原始数据 按行查看 历史
Martin Scholz 提交于 2016-12-15 12:36 . Export cpu cores (#3192)
// +build darwin freebsd linux openbsd windows
package cpu
import (
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/metricbeat/mb/parse"
"github.com/pkg/errors"
)
func init() {
if err := mb.Registry.AddMetricSet("system", "cpu", New, parse.EmptyHostParser); err != nil {
panic(err)
}
}
// MetricSet for fetching system CPU metrics.
type MetricSet struct {
mb.BaseMetricSet
cpu *CPU
}
// New is a mb.MetricSetFactory that returns a cpu.MetricSet.
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
config := struct {
CpuTicks bool `config:"cpu_ticks"` // export CPU usage in ticks
}{
CpuTicks: false,
}
if err := base.Module().UnpackConfig(&config); err != nil {
return nil, err
}
return &MetricSet{
BaseMetricSet: base,
cpu: &CPU{
CpuTicks: config.CpuTicks,
},
}, nil
}
// Fetch fetches CPU metrics from the OS.
func (m *MetricSet) Fetch() (common.MapStr, error) {
stat, err := GetCpuTimes()
if err != nil {
return nil, errors.Wrap(err, "cpu times")
}
m.cpu.AddCpuPercentage(stat)
cpuCores := GetCores()
cpuStat := common.MapStr{
"cores": cpuCores,
"user": common.MapStr{
"pct": stat.UserPercent,
},
"system": common.MapStr{
"pct": stat.SystemPercent,
},
"idle": common.MapStr{
"pct": stat.IdlePercent,
},
"iowait": common.MapStr{
"pct": stat.IOwaitPercent,
},
"irq": common.MapStr{
"pct": stat.IrqPercent,
},
"nice": common.MapStr{
"pct": stat.NicePercent,
},
"softirq": common.MapStr{
"pct": stat.SoftIrqPercent,
},
"steal": common.MapStr{
"pct": stat.StealPercent,
},
}
if m.cpu.CpuTicks {
cpuStat["user"].(common.MapStr)["ticks"] = stat.User
cpuStat["system"].(common.MapStr)["ticks"] = stat.Sys
cpuStat["nice"].(common.MapStr)["ticks"] = stat.Nice
cpuStat["idle"].(common.MapStr)["ticks"] = stat.Idle
cpuStat["iowait"].(common.MapStr)["ticks"] = stat.Wait
cpuStat["irq"].(common.MapStr)["ticks"] = stat.Irq
cpuStat["softirq"].(common.MapStr)["ticks"] = stat.SoftIrq
cpuStat["steal"].(common.MapStr)["ticks"] = stat.Stolen
}
return cpuStat, nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v5.4.2

搜索帮助