2019-02-19 08:22:54 -08:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2021-10-03 04:35:24 -07:00
|
|
|
//go:build !nocpu
|
2019-02-19 08:22:54 -08:00
|
|
|
// +build !nocpu
|
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-11-14 02:53:51 -08:00
|
|
|
"github.com/go-kit/log"
|
2019-02-19 08:22:54 -08:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/procfs/sysfs"
|
2023-03-08 04:23:07 -08:00
|
|
|
"strings"
|
2019-02-19 08:22:54 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
type cpuFreqCollector struct {
|
2023-01-28 02:42:02 -08:00
|
|
|
fs sysfs.FS
|
|
|
|
logger log.Logger
|
2019-02-19 08:22:54 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
registerCollector("cpufreq", defaultEnabled, NewCPUFreqCollector)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewCPUFreqCollector returns a new Collector exposing kernel/system statistics.
|
2019-12-31 08:19:37 -08:00
|
|
|
func NewCPUFreqCollector(logger log.Logger) (Collector, error) {
|
2019-04-10 09:16:12 -07:00
|
|
|
fs, err := sysfs.NewFS(*sysPath)
|
|
|
|
if err != nil {
|
2019-11-29 05:51:31 -08:00
|
|
|
return nil, fmt.Errorf("failed to open sysfs: %w", err)
|
2019-04-10 09:16:12 -07:00
|
|
|
}
|
|
|
|
|
2019-02-19 08:22:54 -08:00
|
|
|
return &cpuFreqCollector{
|
2023-01-28 02:42:02 -08:00
|
|
|
fs: fs,
|
2019-12-31 08:19:37 -08:00
|
|
|
logger: logger,
|
2019-02-19 08:22:54 -08:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update implements Collector and exposes cpu related metrics from /proc/stat and /sys/.../cpu/.
|
|
|
|
func (c *cpuFreqCollector) Update(ch chan<- prometheus.Metric) error {
|
2019-06-12 11:47:16 -07:00
|
|
|
cpuFreqs, err := c.fs.SystemCpufreq()
|
2019-02-19 08:22:54 -08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
for _, stats := range cpuFreqs {
|
|
|
|
if stats.CpuinfoCurrentFrequency != nil {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
2023-01-28 02:42:02 -08:00
|
|
|
cpuFreqHertzDesc,
|
2019-02-19 08:22:54 -08:00
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(*stats.CpuinfoCurrentFrequency)*1000.0,
|
|
|
|
stats.Name,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
if stats.CpuinfoMinimumFrequency != nil {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
2023-01-28 02:42:02 -08:00
|
|
|
cpuFreqMinDesc,
|
2019-02-19 08:22:54 -08:00
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(*stats.CpuinfoMinimumFrequency)*1000.0,
|
|
|
|
stats.Name,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
if stats.CpuinfoMaximumFrequency != nil {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
2023-01-28 02:42:02 -08:00
|
|
|
cpuFreqMaxDesc,
|
2019-02-19 08:22:54 -08:00
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(*stats.CpuinfoMaximumFrequency)*1000.0,
|
|
|
|
stats.Name,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
if stats.ScalingCurrentFrequency != nil {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
2023-01-28 02:42:02 -08:00
|
|
|
cpuFreqScalingFreqDesc,
|
2019-02-19 08:22:54 -08:00
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(*stats.ScalingCurrentFrequency)*1000.0,
|
|
|
|
stats.Name,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
if stats.ScalingMinimumFrequency != nil {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
2023-01-28 02:42:02 -08:00
|
|
|
cpuFreqScalingFreqMinDesc,
|
2019-02-19 08:22:54 -08:00
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(*stats.ScalingMinimumFrequency)*1000.0,
|
|
|
|
stats.Name,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
if stats.ScalingMaximumFrequency != nil {
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
2023-01-28 02:42:02 -08:00
|
|
|
cpuFreqScalingFreqMaxDesc,
|
2019-02-19 08:22:54 -08:00
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(*stats.ScalingMaximumFrequency)*1000.0,
|
|
|
|
stats.Name,
|
|
|
|
)
|
|
|
|
}
|
2023-03-08 04:18:50 -08:00
|
|
|
if stats.Governor != "" {
|
|
|
|
availableGovernors := strings.Split(stats.AvailableGovernors, " ")
|
|
|
|
for _, g := range availableGovernors {
|
|
|
|
state := 0
|
|
|
|
if g == stats.Governor {
|
|
|
|
state = 1
|
|
|
|
}
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
cpuFreqScalingGovernorDesc,
|
|
|
|
prometheus.GaugeValue,
|
|
|
|
float64(state),
|
|
|
|
stats.Name,
|
|
|
|
g,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2019-02-19 08:22:54 -08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|