mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-10 07:34:09 -08:00
130 lines
3.4 KiB
Go
130 lines
3.4 KiB
Go
// 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 (
|
|
"strconv"
|
|
"unsafe"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
type clockinfo struct {
|
|
hz int32 // clock frequency
|
|
tick int32 // micro-seconds per hz tick
|
|
spare int32
|
|
stathz int32 // statistics clock frequency
|
|
profhz int32 // profiling clock frequency
|
|
}
|
|
|
|
type cputime struct {
|
|
user float64
|
|
nice float64
|
|
sys float64
|
|
intr float64
|
|
idle float64
|
|
}
|
|
|
|
func getCPUTimes() ([]cputime, error) {
|
|
const states = 5
|
|
|
|
clockb, err := unix.SysctlRaw("kern.clockrate")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
clock := *(*clockinfo)(unsafe.Pointer(&clockb[0]))
|
|
cpb, err := unix.SysctlRaw("kern.cp_times")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var cpufreq float64
|
|
if clock.stathz > 0 {
|
|
cpufreq = float64(clock.stathz)
|
|
} else {
|
|
cpufreq = float64(clock.hz)
|
|
}
|
|
var times []float64
|
|
for len(cpb) >= int(unsafe.Sizeof(int(0))) {
|
|
t := *(*int)(unsafe.Pointer(&cpb[0]))
|
|
times = append(times, float64(t)/cpufreq)
|
|
cpb = cpb[unsafe.Sizeof(int(0)):]
|
|
}
|
|
|
|
cpus := make([]cputime, len(times)/states)
|
|
for i := 0; i < len(times); i += states {
|
|
cpu := &cpus[i/states]
|
|
cpu.user = times[i]
|
|
cpu.nice = times[i+1]
|
|
cpu.sys = times[i+2]
|
|
cpu.intr = times[i+3]
|
|
cpu.idle = times[i+4]
|
|
}
|
|
return cpus, nil
|
|
}
|
|
|
|
type statCollector struct {
|
|
cpu *prometheus.CounterVec
|
|
}
|
|
|
|
func init() {
|
|
Factories["cpu"] = NewStatCollector
|
|
}
|
|
|
|
// Takes a prometheus registry and returns a new Collector exposing
|
|
// CPU stats.
|
|
func NewStatCollector() (Collector, error) {
|
|
return &statCollector{
|
|
cpu: prometheus.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Namespace: Namespace,
|
|
Name: "cpu_seconds_total",
|
|
Help: "Seconds the CPU spent in each mode.",
|
|
},
|
|
[]string{"cpu", "mode"},
|
|
),
|
|
}, nil
|
|
}
|
|
|
|
// Expose CPU stats using sysctl.
|
|
func (c *statCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
|
// We want time spent per-cpu per CPUSTATE.
|
|
// CPUSTATES (number of CPUSTATES) is defined as 5U.
|
|
// Order: CP_USER | CP_NICE | CP_SYS | CP_IDLE | CP_INTR
|
|
// sysctl kern.cp_times provides hw.ncpu * CPUSTATES long integers:
|
|
// hw.ncpu * (space-separated list of the above variables)
|
|
//
|
|
// Each value is a counter incremented at frequency
|
|
// kern.clockrate.(stathz | hz)
|
|
//
|
|
// Look into sys/kern/kern_clock.c for details.
|
|
|
|
cpuTimes, err := getCPUTimes()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for cpu, t := range cpuTimes {
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "user"}).Set(t.user)
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "nice"}).Set(t.nice)
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "system"}).Set(t.sys)
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "interrupt"}).Set(t.intr)
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "idle"}).Set(t.idle)
|
|
}
|
|
c.cpu.Collect(ch)
|
|
return err
|
|
}
|