2016-09-10 16:55:21 +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 (
|
|
|
|
"errors"
|
2016-09-10 19:13:06 +00:00
|
|
|
"fmt"
|
2016-09-17 12:43:29 +00:00
|
|
|
"strconv"
|
2016-09-17 12:05:36 +00:00
|
|
|
"unsafe"
|
2016-09-10 16:55:21 +00:00
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
#cgo LDFLAGS:
|
2016-09-10 19:13:06 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/time.h>
|
2016-09-10 16:55:21 +00:00
|
|
|
#include <sys/sysctl.h>
|
2016-09-10 19:13:06 +00:00
|
|
|
#include <kinfo.h>
|
|
|
|
|
|
|
|
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.cputime", mib_kern_cp_times, &mib_kern_cp_times_len);
|
|
|
|
if (ret == 0) mibs_set_up = 1;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-09-17 16:50:08 +00:00
|
|
|
struct exported_cputime {
|
|
|
|
uint64_t cp_user;
|
|
|
|
uint64_t cp_nice;
|
|
|
|
uint64_t cp_sys;
|
|
|
|
uint64_t cp_intr;
|
|
|
|
uint64_t cp_idle;
|
|
|
|
};
|
|
|
|
|
|
|
|
int getCPUTimes(int *ncpu, struct exported_cputime **cputime) {
|
2016-09-10 16:55:21 +00:00
|
|
|
size_t len;
|
|
|
|
|
2016-09-10 19:13:06 +00:00
|
|
|
// Get number of cpu cores.
|
|
|
|
int mib[2];
|
2016-09-10 16:55:21 +00:00
|
|
|
mib[0] = CTL_HW;
|
|
|
|
mib[1] = HW_NCPU;
|
|
|
|
len = sizeof(*ncpu);
|
2016-09-10 19:13:06 +00:00
|
|
|
if (sysctl(mib, 2, ncpu, &len, NULL, 0)) {
|
2016-09-10 16:55:21 +00:00
|
|
|
return -1;
|
2016-09-10 19:13:06 +00:00
|
|
|
}
|
2016-09-10 16:55:21 +00:00
|
|
|
|
|
|
|
// Retrieve clockrate
|
|
|
|
struct clockinfo clockrate;
|
|
|
|
size_t clockrate_size = sizeof(clockrate);
|
2016-09-10 19:13:06 +00:00
|
|
|
if (sysctl(mib_kern_clockrate, mib_kern_clockrate_len, &clockrate, &clockrate_size, NULL, 0) == -1 ||
|
|
|
|
sizeof(clockrate) != clockrate_size) {
|
2016-09-10 16:55:21 +00:00
|
|
|
return -1;
|
2016-09-10 19:13:06 +00:00
|
|
|
}
|
2016-09-10 16:55:21 +00:00
|
|
|
|
2016-09-17 16:50:08 +00:00
|
|
|
// What are the consequences of casting this immediately to uint64_t
|
|
|
|
// instead of long?
|
|
|
|
uint64_t cpufreq = clockrate.stathz > 0 ? clockrate.stathz : clockrate.hz;
|
2016-09-10 19:13:06 +00:00
|
|
|
|
|
|
|
// Get the cpu times.
|
|
|
|
struct kinfo_cputime cp_t[*ncpu];
|
|
|
|
bzero(cp_t, sizeof(struct kinfo_cputime)*(*ncpu));
|
|
|
|
len = sizeof(cp_t[0])*(*ncpu);
|
|
|
|
if (sysctlbyname("kern.cputime", &cp_t, &len, NULL, 0)) {
|
|
|
|
return -1;
|
2016-09-10 16:55:21 +00:00
|
|
|
}
|
|
|
|
|
2016-09-17 16:50:08 +00:00
|
|
|
struct exported_cputime xp_t[*ncpu];
|
|
|
|
for (int i = 0; i < *ncpu; ++i) {
|
|
|
|
xp_t[i].cp_user = cp_t[i].cp_user/cpufreq;
|
|
|
|
xp_t[i].cp_nice = cp_t[i].cp_nice/cpufreq;
|
|
|
|
xp_t[i].cp_sys = cp_t[i].cp_sys/cpufreq;
|
|
|
|
xp_t[i].cp_intr = cp_t[i].cp_intr/cpufreq;
|
|
|
|
xp_t[i].cp_idle = cp_t[i].cp_idle/cpufreq;
|
|
|
|
}
|
|
|
|
|
|
|
|
*cputime = &xp_t[0];
|
|
|
|
|
|
|
|
// free(&cp_t);
|
2016-09-10 19:13:06 +00:00
|
|
|
|
2016-09-10 16:55:21 +00:00
|
|
|
return 0;
|
2016-09-10 19:13:06 +00:00
|
|
|
|
2016-09-10 16:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void freeCPUTimes(double *cpu_times) {
|
|
|
|
free(cpu_times);
|
|
|
|
}
|
|
|
|
|
2016-09-10 19:13:06 +00:00
|
|
|
*/
|
2016-09-10 16:55:21 +00:00
|
|
|
import "C"
|
|
|
|
|
2016-09-10 19:13:06 +00:00
|
|
|
const maxCPUTimesLen = C.MAXCPU * C.CPUSTATES
|
|
|
|
|
2016-09-10 16:55:21 +00:00
|
|
|
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) {
|
2016-09-10 19:13:06 +00:00
|
|
|
if C.setupSysctlMIBs() == -1 {
|
|
|
|
return nil, errors.New("could not initialize sysctl MIBs")
|
|
|
|
}
|
2016-09-10 16:55:21 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2016-09-17 16:50:08 +00:00
|
|
|
type exportedCPUTime struct {
|
2016-09-10 19:13:06 +00:00
|
|
|
cp_user, cp_nice, cp_sys, cp_intr, cp_idle uint64
|
|
|
|
}
|
|
|
|
|
2016-09-10 16:55:21 +00:00
|
|
|
// Expose CPU stats using sysctl.
|
|
|
|
func (c *statCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
2016-09-10 19:13:06 +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.
|
2016-09-10 16:55:21 +00:00
|
|
|
|
|
|
|
var ncpu C.int
|
2016-09-17 16:50:08 +00:00
|
|
|
var cpuTimesC *C.struct_exported_cputime
|
2016-09-10 19:13:06 +00:00
|
|
|
|
2016-09-17 16:50:08 +00:00
|
|
|
if C.getCPUTimes(&ncpu, &cpuTimesC) == -1 {
|
2016-09-10 16:55:21 +00:00
|
|
|
return errors.New("could not retrieve CPU times")
|
|
|
|
}
|
2016-09-17 12:05:36 +00:00
|
|
|
// TODO: Remember to free variables
|
2016-09-10 19:13:06 +00:00
|
|
|
// defer C.freeCPUTimes(cpuTimesC)
|
2016-09-17 12:05:36 +00:00
|
|
|
|
2016-09-17 16:50:08 +00:00
|
|
|
cpuTimes := (*[1 << 30]C.struct_exported_cputime)(unsafe.Pointer(cpuTimesC))[:ncpu:ncpu]
|
2016-09-17 12:43:29 +00:00
|
|
|
|
2016-09-17 12:05:36 +00:00
|
|
|
fmt.Println(cpuTimes)
|
2016-09-10 16:55:21 +00:00
|
|
|
|
2016-09-17 12:43:29 +00:00
|
|
|
for i, cpu := range cpuTimes {
|
2016-09-17 16:50:08 +00:00
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(i), "mode": "user"}).Set(float64(cpu.cp_user))
|
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(i), "mode": "nice"}).Set(float64(cpu.cp_nice))
|
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(i), "mode": "system"}).Set(float64(cpu.cp_sys))
|
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(i), "mode": "interrupt"}).Set(float64(cpu.cp_intr))
|
|
|
|
c.cpu.With(prometheus.Labels{"cpu": strconv.Itoa(i), "mode": "idle"}).Set(float64(cpu.cp_idle))
|
2016-09-17 12:43:29 +00:00
|
|
|
}
|
2016-09-10 16:55:21 +00:00
|
|
|
|
|
|
|
c.cpu.Collect(ch)
|
|
|
|
return err
|
|
|
|
}
|