2015-09-26 15:36:40 +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.
|
|
|
|
|
2015-06-24 12:45:40 +00:00
|
|
|
// +build !nocpu
|
2015-05-12 07:13:08 +00:00
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"strconv"
|
|
|
|
"unsafe"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
2016-02-17 02:20:55 +00:00
|
|
|
#cgo LDFLAGS:
|
2015-05-12 07:13:08 +00:00
|
|
|
#include <fcntl.h>
|
2015-09-26 22:08:18 +00:00
|
|
|
#include <stdlib.h>
|
2015-05-12 07:13:08 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/pcpu.h>
|
|
|
|
#include <sys/resource.h>
|
2015-09-26 22:08:18 +00:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
2016-02-17 02:20:55 +00:00
|
|
|
static int mibs_set_up = 0;
|
|
|
|
|
|
|
|
static int mib_kern_cp_times[2];
|
|
|
|
static size_t mib_kern_cp_times_len = 2;
|
|
|
|
|
|
|
|
static const int mib_hw_ncpu[] = {CTL_HW, HW_NCPU};
|
|
|
|
static const size_t mib_hw_ncpu_len = 2;
|
|
|
|
|
|
|
|
static const int mib_kern_clockrate[] = {CTL_KERN, KERN_CLOCKRATE};
|
|
|
|
static size_t mib_kern_clockrate_len = 2;
|
|
|
|
|
|
|
|
// Setup method for MIBs not available as constants.
|
|
|
|
// Calls to this method must be synchronized externally.
|
|
|
|
int setupSysctlMIBs() {
|
|
|
|
int ret = sysctlnametomib("kern.cp_times", mib_kern_cp_times, &mib_kern_cp_times_len);
|
|
|
|
if (ret == 0) mibs_set_up = 1;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getCPUTimes(int *ncpu, double **cpu_times, size_t *cp_times_length) {
|
|
|
|
|
|
|
|
// Assert that mibs are set up through setupSysctlMIBs
|
|
|
|
if (!mibs_set_up) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve number of cpu cores
|
|
|
|
size_t ncpu_size = sizeof(*ncpu);
|
|
|
|
if (sysctl(mib_hw_ncpu, mib_hw_ncpu_len, ncpu, &ncpu_size, NULL, 0) == -1 ||
|
|
|
|
sizeof(*ncpu) != ncpu_size) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve clockrate
|
2015-09-26 22:08:18 +00:00
|
|
|
struct clockinfo clockrate;
|
2016-02-17 02:20:55 +00:00
|
|
|
size_t clockrate_size = sizeof(clockrate);
|
|
|
|
if (sysctl(mib_kern_clockrate, mib_kern_clockrate_len, &clockrate, &clockrate_size, NULL, 0) == -1 ||
|
|
|
|
sizeof(clockrate) != clockrate_size) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve cp_times values
|
|
|
|
*cp_times_length = (*ncpu) * CPUSTATES;
|
|
|
|
|
|
|
|
long cp_times[*cp_times_length];
|
|
|
|
size_t cp_times_size = sizeof(cp_times);
|
|
|
|
|
|
|
|
if (sysctl(mib_kern_cp_times, mib_kern_cp_times_len, &cp_times, &cp_times_size, NULL, 0) == -1 ||
|
|
|
|
sizeof(cp_times) != cp_times_size) {
|
2015-09-26 22:08:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-02-17 02:20:55 +00:00
|
|
|
|
|
|
|
// Compute absolute time for different CPU states
|
|
|
|
long cpufreq = clockrate.stathz > 0 ? clockrate.stathz : clockrate.hz;
|
|
|
|
*cpu_times = (double *) malloc(sizeof(double)*(*cp_times_length));
|
|
|
|
for (int i = 0; i < (*cp_times_length); i++) {
|
|
|
|
(*cpu_times)[i] = ((double) cp_times[i]) / cpufreq;
|
2015-09-26 22:08:18 +00:00
|
|
|
}
|
2016-02-17 02:20:55 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void freeCPUTimes(double *cpu_times) {
|
|
|
|
free(cpu_times);
|
2015-09-26 22:08:18 +00:00
|
|
|
}
|
|
|
|
|
2015-05-12 07:13:08 +00:00
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
2016-04-19 22:22:47 +00:00
|
|
|
const maxCPUTimesLen = C.MAXCPU * C.CPUSTATES
|
2016-04-19 19:59:53 +00:00
|
|
|
|
2015-05-12 07:13:08 +00:00
|
|
|
type statCollector struct {
|
2015-06-23 13:49:18 +00:00
|
|
|
cpu *prometheus.CounterVec
|
2015-05-12 07:13:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Factories["cpu"] = NewStatCollector
|
|
|
|
}
|
|
|
|
|
2015-06-23 20:14:52 +00:00
|
|
|
// Takes a prometheus registry and returns a new Collector exposing
|
|
|
|
// CPU stats.
|
2015-06-23 13:49:18 +00:00
|
|
|
func NewStatCollector() (Collector, error) {
|
2016-02-17 02:20:55 +00:00
|
|
|
if C.setupSysctlMIBs() == -1 {
|
|
|
|
return nil, errors.New("could not initialize sysctl MIBs")
|
|
|
|
}
|
2015-05-12 07:13:08 +00:00
|
|
|
return &statCollector{
|
|
|
|
cpu: prometheus.NewCounterVec(
|
|
|
|
prometheus.CounterOpts{
|
|
|
|
Namespace: Namespace,
|
2015-06-23 20:14:52 +00:00
|
|
|
Name: "cpu_seconds_total",
|
|
|
|
Help: "Seconds the CPU spent in each mode.",
|
2015-05-12 07:13:08 +00:00
|
|
|
},
|
|
|
|
[]string{"cpu", "mode"},
|
|
|
|
),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2016-02-17 02:20:55 +00:00
|
|
|
// Expose CPU stats using sysctl.
|
2015-05-12 07:13:08 +00:00
|
|
|
func (c *statCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
2015-05-20 07:52:00 +00:00
|
|
|
|
2016-02-17 02:20:55 +00:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
var ncpu C.int
|
|
|
|
var cpuTimesC *C.double
|
|
|
|
var cpuTimesLength C.size_t
|
|
|
|
if C.getCPUTimes(&ncpu, &cpuTimesC, &cpuTimesLength) == -1 {
|
|
|
|
return errors.New("could not retrieve CPU times")
|
2015-09-26 22:08:18 +00:00
|
|
|
}
|
2016-04-19 22:19:16 +00:00
|
|
|
defer C.freeCPUTimes(cpuTimesC)
|
2016-04-19 22:22:47 +00:00
|
|
|
if cpuTimesLength > maxCPUTimesLen {
|
2016-04-19 19:59:53 +00:00
|
|
|
return errors.New("more CPU's than MAXCPU?")
|
|
|
|
}
|
2016-02-17 02:20:55 +00:00
|
|
|
|
|
|
|
// Convert C.double array to Go array (https://github.com/golang/go/wiki/cgo#turning-c-arrays-into-go-slices).
|
2016-04-19 22:22:47 +00:00
|
|
|
cpuTimes := (*[maxCPUTimesLen]C.double)(unsafe.Pointer(cpuTimesC))[:cpuTimesLength:cpuTimesLength]
|
2015-09-26 22:08:18 +00:00
|
|
|
|
2016-02-17 02:20:55 +00:00
|
|
|
for cpu := 0; cpu < int(ncpu); cpu++ {
|
|
|
|
base_idx := C.CPUSTATES * cpu
|
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "user"}).Set(float64(cpuTimes[base_idx+C.CP_USER]))
|
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "nice"}).Set(float64(cpuTimes[base_idx+C.CP_NICE]))
|
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "system"}).Set(float64(cpuTimes[base_idx+C.CP_SYS]))
|
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "interrupt"}).Set(float64(cpuTimes[base_idx+C.CP_INTR]))
|
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(cpu), "mode": "idle"}).Set(float64(cpuTimes[base_idx+C.CP_IDLE]))
|
2015-05-12 07:13:08 +00:00
|
|
|
}
|
2016-02-17 02:20:55 +00:00
|
|
|
|
2015-05-12 07:13:08 +00:00
|
|
|
c.cpu.Collect(ch)
|
|
|
|
return err
|
|
|
|
}
|