1 Star 0 Fork 0

sqos/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cpu.go 2.60 KB
一键复制 编辑 原始数据 按行查看 历史
// +build darwin freebsd linux openbsd windows
package cpu
import (
"strings"
"github.com/pkg/errors"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/metricbeat/mb/parse"
"github.com/elastic/beats/metricbeat/module/system"
)
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
config Config
cpu *system.CPUMonitor
}
// New is a mb.MetricSetFactory that returns a cpu.MetricSet.
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
config := defaultConfig
if err := base.Module().UnpackConfig(&config); err != nil {
return nil, err
}
if config.CPUTicks != nil && *config.CPUTicks {
config.Metrics = append(config.Metrics, "ticks")
}
return &MetricSet{
BaseMetricSet: base,
config: config,
cpu: new(system.CPUMonitor),
}, nil
}
// Fetch fetches CPU metrics from the OS.
func (m *MetricSet) Fetch() (common.MapStr, error) {
sample, err := m.cpu.Sample()
if err != nil {
return nil, errors.Wrap(err, "failed to fetch CPU times")
}
event := common.MapStr{"cores": system.NumCPU}
for _, metric := range m.config.Metrics {
switch strings.ToLower(metric) {
case percentages:
pct := sample.Percentages()
event.Put("user.pct", pct.User)
event.Put("system.pct", pct.System)
event.Put("idle.pct", pct.Idle)
event.Put("iowait.pct", pct.IOWait)
event.Put("irq.pct", pct.IRQ)
event.Put("nice.pct", pct.Nice)
event.Put("softirq.pct", pct.SoftIRQ)
event.Put("steal.pct", pct.Steal)
event.Put("total.pct", pct.Total)
case normalizedPercentages:
normalizedPct := sample.NormalizedPercentages()
event.Put("user.norm.pct", normalizedPct.User)
event.Put("system.norm.pct", normalizedPct.System)
event.Put("idle.norm.pct", normalizedPct.Idle)
event.Put("iowait.norm.pct", normalizedPct.IOWait)
event.Put("irq.norm.pct", normalizedPct.IRQ)
event.Put("nice.norm.pct", normalizedPct.Nice)
event.Put("softirq.norm.pct", normalizedPct.SoftIRQ)
event.Put("steal.norm.pct", normalizedPct.Steal)
event.Put("total.norm.pct", normalizedPct.Total)
case ticks:
ticks := sample.Ticks()
event.Put("user.ticks", ticks.User)
event.Put("system.ticks", ticks.System)
event.Put("idle.ticks", ticks.Idle)
event.Put("iowait.ticks", ticks.IOWait)
event.Put("irq.ticks", ticks.IRQ)
event.Put("nice.ticks", ticks.Nice)
event.Put("softirq.ticks", ticks.SoftIRQ)
event.Put("steal.ticks", ticks.Steal)
}
}
return event, nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqos/beats.git
git@gitee.com:sqos/beats.git
sqos
beats
beats
v6.1.3

搜索帮助