2017-06-13 09:21:53 +00:00
|
|
|
// Copyright 2015 The Prometheus 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.
|
|
|
|
|
|
|
|
// +build !nocpu
|
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-09-07 21:24:18 +00:00
|
|
|
"io/ioutil"
|
2017-06-20 05:51:26 +00:00
|
|
|
"os"
|
2017-06-13 09:21:53 +00:00
|
|
|
"path/filepath"
|
2017-09-07 21:24:18 +00:00
|
|
|
"regexp"
|
|
|
|
"strings"
|
2017-06-13 09:21:53 +00:00
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2017-06-20 05:51:26 +00:00
|
|
|
"github.com/prometheus/common/log"
|
2017-06-13 09:21:53 +00:00
|
|
|
"github.com/prometheus/procfs"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2017-09-28 13:06:26 +00:00
|
|
|
cpuCollectorSubsystem = "cpu"
|
2017-06-13 09:21:53 +00:00
|
|
|
)
|
|
|
|
|
2017-09-07 21:24:18 +00:00
|
|
|
var (
|
|
|
|
digitRegexp = regexp.MustCompile("[0-9]+")
|
|
|
|
)
|
|
|
|
|
2017-06-13 09:21:53 +00:00
|
|
|
type cpuCollector struct {
|
|
|
|
cpu *prometheus.Desc
|
|
|
|
cpuFreq *prometheus.Desc
|
|
|
|
cpuFreqMin *prometheus.Desc
|
|
|
|
cpuFreqMax *prometheus.Desc
|
|
|
|
cpuCoreThrottle *prometheus.Desc
|
|
|
|
cpuPackageThrottle *prometheus.Desc
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2017-09-28 13:06:26 +00:00
|
|
|
registerCollector("cpu", defaultEnabled, NewCPUCollector)
|
2017-06-13 09:21:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewCPUCollector returns a new Collector exposing kernel/system statistics.
|
|
|
|
func NewCPUCollector() (Collector, error) {
|
|
|
|
return &cpuCollector{
|
|
|
|
cpu: prometheus.NewDesc(
|
2017-09-28 13:06:26 +00:00
|
|
|
prometheus.BuildFQName(namespace, "", cpuCollectorSubsystem),
|
2017-06-13 09:21:53 +00:00
|
|
|
"Seconds the cpus spent in each mode.",
|
|
|
|
[]string{"cpu", "mode"}, nil,
|
|
|
|
),
|
|
|
|
cpuFreq: prometheus.NewDesc(
|
2017-09-28 13:06:26 +00:00
|
|
|
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "frequency_hertz"),
|
2017-06-13 09:21:53 +00:00
|
|
|
"Current cpu thread frequency in hertz.",
|
|
|
|
[]string{"cpu"}, nil,
|
|
|
|
),
|
|
|
|
cpuFreqMin: prometheus.NewDesc(
|
2017-09-28 13:06:26 +00:00
|
|
|
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "frequency_min_hertz"),
|
2017-06-13 09:21:53 +00:00
|
|
|
"Minimum cpu thread frequency in hertz.",
|
|
|
|
[]string{"cpu"}, nil,
|
|
|
|
),
|
|
|
|
cpuFreqMax: prometheus.NewDesc(
|
2017-09-28 13:06:26 +00:00
|
|
|
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "frequency_max_hertz"),
|
2017-06-13 09:21:53 +00:00
|
|
|
"Maximum cpu thread frequency in hertz.",
|
|
|
|
[]string{"cpu"}, nil,
|
|
|
|
),
|
2017-09-07 21:24:18 +00:00
|
|
|
// FIXME: This should be a per core metric, not per cpu!
|
2017-06-13 09:21:53 +00:00
|
|
|
cpuCoreThrottle: prometheus.NewDesc(
|
2017-09-28 13:06:26 +00:00
|
|
|
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "core_throttles_total"),
|
2017-06-13 09:21:53 +00:00
|
|
|
"Number of times this cpu core has been throttled.",
|
|
|
|
[]string{"cpu"}, nil,
|
|
|
|
),
|
|
|
|
cpuPackageThrottle: prometheus.NewDesc(
|
2017-09-28 13:06:26 +00:00
|
|
|
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "package_throttles_total"),
|
2017-06-13 09:21:53 +00:00
|
|
|
"Number of times this cpu package has been throttled.",
|
2017-09-07 21:24:18 +00:00
|
|
|
[]string{"node"}, nil,
|
2017-06-13 09:21:53 +00:00
|
|
|
),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update implements Collector and exposes cpu related metrics from /proc/stat and /sys/.../cpu/.
|
|
|
|
func (c *cpuCollector) Update(ch chan<- prometheus.Metric) error {
|
|
|
|
if err := c.updateStat(ch); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := c.updateCPUfreq(ch); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// updateCPUfreq reads /sys/bus/cpu/devices/cpu* and expose cpu frequency statistics.
|
|
|
|
func (c *cpuCollector) updateCPUfreq(ch chan<- prometheus.Metric) error {
|
|
|
|
cpus, err := filepath.Glob(sysFilePath("bus/cpu/devices/cpu[0-9]*"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var value uint64
|
|
|
|
|
2017-09-07 21:24:18 +00:00
|
|
|
// cpu loop
|
2017-06-13 09:21:53 +00:00
|
|
|
for _, cpu := range cpus {
|
|
|
|
_, cpuname := filepath.Split(cpu)
|
|
|
|
|
2017-06-20 05:51:26 +00:00
|
|
|
if _, err := os.Stat(filepath.Join(cpu, "cpufreq")); os.IsNotExist(err) {
|
|
|
|
log.Debugf("CPU %q is missing cpufreq", cpu)
|
|
|
|
} else {
|
2017-06-27 09:25:06 +00:00
|
|
|
// sysfs cpufreq values are kHz, thus multiply by 1000 to export base units (hz).
|
|
|
|
// See https://www.kernel.org/doc/Documentation/cpu-freq/user-guide.txt
|
2017-09-07 21:24:18 +00:00
|
|
|
if value, err = readUintFromFile(filepath.Join(cpu, "cpufreq", "scaling_cur_freq")); err != nil {
|
2017-06-20 05:51:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-06-27 09:05:55 +00:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpuFreq, prometheus.GaugeValue, float64(value)*1000.0, cpuname)
|
2017-06-20 05:51:26 +00:00
|
|
|
|
2017-09-07 21:24:18 +00:00
|
|
|
if value, err = readUintFromFile(filepath.Join(cpu, "cpufreq", "scaling_min_freq")); err != nil {
|
2017-06-20 05:51:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-06-27 09:05:55 +00:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpuFreqMin, prometheus.GaugeValue, float64(value)*1000.0, cpuname)
|
2017-06-20 05:51:26 +00:00
|
|
|
|
2017-09-07 21:24:18 +00:00
|
|
|
if value, err = readUintFromFile(filepath.Join(cpu, "cpufreq", "scaling_max_freq")); err != nil {
|
2017-06-20 05:51:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-06-27 09:05:55 +00:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpuFreqMax, prometheus.GaugeValue, float64(value)*1000.0, cpuname)
|
2017-06-13 09:21:53 +00:00
|
|
|
}
|
|
|
|
|
2017-06-20 05:51:26 +00:00
|
|
|
if _, err := os.Stat(filepath.Join(cpu, "thermal_throttle")); os.IsNotExist(err) {
|
|
|
|
log.Debugf("CPU %q is missing thermal_throttle", cpu)
|
2017-09-07 21:24:18 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
if value, err = readUintFromFile(filepath.Join(cpu, "thermal_throttle", "core_throttle_count")); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpuCoreThrottle, prometheus.CounterValue, float64(value), cpuname)
|
|
|
|
}
|
2017-06-20 05:51:26 +00:00
|
|
|
|
2017-09-07 21:24:18 +00:00
|
|
|
pkgs, err := filepath.Glob(sysFilePath("bus/node/devices/node[0-9]*"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// package/node loop
|
|
|
|
for _, pkg := range pkgs {
|
|
|
|
if _, err := os.Stat(filepath.Join(pkg, "cpulist")); os.IsNotExist(err) {
|
|
|
|
log.Debugf("package %q is missing cpulist", pkg)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
cpulist, err := ioutil.ReadFile(filepath.Join(pkg, "cpulist"))
|
|
|
|
if err != nil {
|
|
|
|
log.Debugf("could not read cpulist of package %q", pkg)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// cpulist example of one package/node with HT: "0-11,24-35"
|
|
|
|
line := strings.Split(string(cpulist), "\n")[0]
|
|
|
|
firstCPU := strings.FieldsFunc(line, func(r rune) bool {
|
|
|
|
return r == '-' || r == ','
|
|
|
|
})[0]
|
|
|
|
if _, err := os.Stat(filepath.Join(pkg, "cpu"+firstCPU, "thermal_throttle", "package_throttle_count")); os.IsNotExist(err) {
|
|
|
|
log.Debugf("Package %q CPU %q is missing package_throttle", pkg, firstCPU)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if value, err = readUintFromFile(filepath.Join(pkg, "cpu"+firstCPU, "thermal_throttle", "package_throttle_count")); err != nil {
|
|
|
|
return err
|
2017-06-13 09:21:53 +00:00
|
|
|
}
|
2017-09-07 21:24:18 +00:00
|
|
|
pkgno := digitRegexp.FindAllString(pkg, 1)[0]
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpuPackageThrottle, prometheus.CounterValue, float64(value), pkgno)
|
2017-06-13 09:21:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// updateStat reads /proc/stat through procfs and exports cpu related metrics.
|
|
|
|
func (c *cpuCollector) updateStat(ch chan<- prometheus.Metric) error {
|
|
|
|
fs, err := procfs.NewFS(*procPath)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to open procfs: %v", err)
|
|
|
|
}
|
|
|
|
stats, err := fs.NewStat()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for cpuID, cpuStat := range stats.CPU {
|
|
|
|
cpuName := fmt.Sprintf("cpu%d", cpuID)
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.User, cpuName, "user")
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.Nice, cpuName, "nice")
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.System, cpuName, "system")
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.Idle, cpuName, "idle")
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.Iowait, cpuName, "iowait")
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.IRQ, cpuName, "irq")
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.SoftIRQ, cpuName, "softirq")
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.Steal, cpuName, "steal")
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.Guest, cpuName, "guest")
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, cpuStat.GuestNice, cpuName, "guest_nice")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|