-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathcpu_scraper.go
93 lines (75 loc) · 2.76 KB
/
cpu_scraper.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
87
88
89
90
91
92
93
// Copyright The OpenTelemetry Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cpuscraper
import (
"context"
"time"
"github.com/shirou/gopsutil/cpu"
"github.com/shirou/gopsutil/host"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/model/pdata"
"go.opentelemetry.io/collector/receiver/hostmetricsreceiver/internal/metadata"
"go.opentelemetry.io/collector/receiver/scrapererror"
)
const metricsLen = 1
// scraper for CPU Metrics
type scraper struct {
config *Config
startTime pdata.Timestamp
// for mocking
bootTime func() (uint64, error)
times func(bool) ([]cpu.TimesStat, error)
}
// newCPUScraper creates a set of CPU related metrics
func newCPUScraper(_ context.Context, cfg *Config) *scraper {
return &scraper{config: cfg, bootTime: host.BootTime, times: cpu.Times}
}
func (s *scraper) start(context.Context, component.Host) error {
bootTime, err := s.bootTime()
if err != nil {
return err
}
s.startTime = pdata.Timestamp(bootTime * 1e9)
return nil
}
func (s *scraper) scrape(_ context.Context) (pdata.MetricSlice, error) {
metrics := pdata.NewMetricSlice()
now := pdata.TimestampFromTime(time.Now())
cpuTimes, err := s.times( /*percpu=*/ true)
if err != nil {
return metrics, scrapererror.NewPartialScrapeError(err, metricsLen)
}
initializeCPUTimeMetric(metrics.AppendEmpty(), s.startTime, now, cpuTimes)
return metrics, nil
}
func initializeCPUTimeMetric(metric pdata.Metric, startTime, now pdata.Timestamp, cpuTimes []cpu.TimesStat) {
metadata.Metrics.SystemCPUTime.Init(metric)
ddps := metric.Sum().DataPoints()
ddps.EnsureCapacity(len(cpuTimes) * cpuStatesLen)
for _, cpuTime := range cpuTimes {
appendCPUTimeStateDataPoints(ddps, startTime, now, cpuTime)
}
}
const gopsCPUTotal string = "cpu-total"
func initializeCPUTimeDataPoint(dataPoint pdata.NumberDataPoint, startTime, now pdata.Timestamp, cpuLabel string, stateLabel string, value float64) {
attributes := dataPoint.Attributes()
// ignore cpu attribute if reporting "total" cpu usage
if cpuLabel != gopsCPUTotal {
attributes.InsertString(metadata.Labels.Cpu, cpuLabel)
}
attributes.InsertString(metadata.Labels.CPUState, stateLabel)
dataPoint.SetStartTimestamp(startTime)
dataPoint.SetTimestamp(now)
dataPoint.SetDoubleVal(value)
}