This repository has been archived by the owner on Feb 11, 2021. It is now read-only.
forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.go
86 lines (73 loc) · 2.16 KB
/
core.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// +build darwin freebsd linux openbsd windows
package core
import (
"strings"
"github.com/pkg/errors"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/metric/system/cpu"
"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/metricbeat/mb/parse"
)
func init() {
if err := mb.Registry.AddMetricSet("system", "core", New, parse.EmptyHostParser); err != nil {
panic(err)
}
}
// MetricSet for fetching system core metrics.
type MetricSet struct {
mb.BaseMetricSet
config Config
cores *cpu.CoresMonitor
}
// New returns a new core 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,
cores: new(cpu.CoresMonitor),
}, nil
}
// Fetch fetches CPU core metrics from the OS.
func (m *MetricSet) Fetch(report mb.Reporter) {
samples, err := m.cores.Sample()
if err != nil {
report.Error(errors.Wrap(err, "failed to sample CPU core times"))
return
}
for id, sample := range samples {
event := common.MapStr{"id": id}
for _, metric := range m.config.Metrics {
switch strings.ToLower(metric) {
case percentages:
// Use NormalizedPercentages here because per core metrics range on [0, 100%].
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)
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)
}
}
report.Event(event)
}
}