node_exporter/collector/cpu_dragonfly.go

169 lines
4.4 KiB
Go
Raw Normal View History

2016-09-10 09:55:21 -07: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 12:13:06 -07:00
"fmt"
2016-09-17 05:43:29 -07:00
"strconv"
"strings"
"unsafe"
2016-09-10 09:55:21 -07:00
"github.com/prometheus/client_golang/prometheus"
)
/*
#cgo LDFLAGS:
#include <sys/sysctl.h>
2016-09-10 12:13:06 -07:00
#include <kinfo.h>
2016-09-17 10:12:48 -07:00
#include <stdlib.h>
#include <stdio.h>
2016-09-10 12:13:06 -07: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_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() {
2016-09-10 12:13:06 -07:00
int ret = sysctlnametomib("kern.cputime", mib_kern_cp_times, &mib_kern_cp_times_len);
if (ret == 0) mibs_set_up = 1;
return ret;
}
int
getCPUTimes(int *ncpu, char **cputime) {
2016-09-10 09:55:21 -07:00
size_t len;
2016-09-10 12:13:06 -07:00
// Get number of cpu cores.
int mib[2];
2016-09-10 09:55:21 -07:00
mib[0] = CTL_HW;
mib[1] = HW_NCPU;
len = sizeof(*ncpu);
2016-09-10 12:13:06 -07:00
if (sysctl(mib, 2, ncpu, &len, NULL, 0)) {
2016-09-10 09:55:21 -07:00
return -1;
2016-09-10 12:13:06 -07:00
}
2016-09-10 09:55:21 -07:00
// Retrieve clockrate
struct clockinfo clockrate;
size_t clockrate_size = sizeof(clockrate);
2016-09-10 12:13:06 -07:00
if (sysctl(mib_kern_clockrate, mib_kern_clockrate_len, &clockrate, &clockrate_size, NULL, 0) == -1 ||
sizeof(clockrate) != clockrate_size) {
2016-09-10 09:55:21 -07:00
return -1;
2016-09-10 12:13:06 -07:00
}
2016-09-10 09:55:21 -07:00
long freq = clockrate.stathz > 0 ? clockrate.stathz : clockrate.hz;
2016-09-10 12:13:06 -07: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 09:55:21 -07:00
}
// string needs to hold (5*ncpu)(uint64_t + char)
// The char is the space between values.
int cputime_size = (sizeof(uint64_t)+sizeof(char))*(5*(*ncpu));
*cputime = (char *) malloc(cputime_size);
bzero(*cputime, cputime_size);
uint64_t user, nice, sys, intr, idle;
user = nice = sys = intr = idle = 0;
for (int i = 0; i < *ncpu; ++i) {
user = ((double) cp_t[i].cp_user) / freq;
nice = ((double) cp_t[i].cp_nice) / freq;
sys = ((double) cp_t[i].cp_sys) / freq;
intr = ((double) cp_t[i].cp_intr) / freq;
idle = ((double) cp_t[i].cp_idle) / freq;
sprintf(*cputime + strlen(*cputime), "%llu %llu %llu %llu %llu ", user, nice, sys, intr, idle );
}
2016-09-10 09:55:21 -07:00
return 0;
2016-09-10 12:13:06 -07:00
2016-09-10 09:55:21 -07:00
}
2016-09-10 12:13:06 -07:00
*/
2016-09-10 09:55:21 -07:00
import "C"
2016-09-10 12:13:06 -07:00
const maxCPUTimesLen = C.MAXCPU * C.CPUSTATES
2016-09-10 09:55:21 -07:00
type statCollector struct {
cpu *prometheus.Desc
2016-09-10 09:55:21 -07:00
}
func init() {
Factories["cpu"] = NewStatCollector
}
// Takes a prometheus registry and returns a new Collector exposing
// CPU stats.
func NewStatCollector() (Collector, error) {
2016-09-10 12:13:06 -07:00
if C.setupSysctlMIBs() == -1 {
return nil, errors.New("could not initialize sysctl MIBs")
}
2016-09-10 09:55:21 -07:00
return &statCollector{
cpu: prometheus.NewDesc(
prometheus.BuildFQName(Namespace, "", "cpu"),
"Seconds the cpus spent in each mode.",
[]string{"cpu", "mode"}, nil,
2016-09-10 09:55:21 -07:00
),
}, nil
}
// Expose CPU stats using sysctl.
func (c *statCollector) Update(ch chan<- prometheus.Metric) error {
2016-09-10 12:13:06 -07:00
// We want time spent per-cpu per CPUSTATE.
// CPUSTATES (number of CPUSTATES) is defined as 5U.
2016-09-17 10:12:48 -07:00
// States: CP_USER | CP_NICE | CP_SYS | CP_IDLE | CP_INTR
2016-09-10 12:13:06 -07:00
//
// Each value is a counter incremented at frequency
// kern.clockrate.(stathz | hz)
//
// Look into sys/kern/kern_clock.c for details.
2016-09-10 09:55:21 -07:00
var ncpu C.int
var cpuTimesC *C.char
var fieldsCount = 5
2016-09-10 12:13:06 -07:00
if C.getCPUTimes(&ncpu, &cpuTimesC) == -1 {
2016-09-10 09:55:21 -07:00
return errors.New("could not retrieve CPU times")
}
cpuTimes := strings.Split(strings.TrimSpace(C.GoString(cpuTimesC)), " ")
C.free(unsafe.Pointer(cpuTimesC))
// TODO: Figure out why the string is always growing
fmt.Println(cpuTimes)
2016-09-10 09:55:21 -07:00
// Export order: user nice sys intr idle
cpuFields := []string{"user", "nice", "sys", "interrupt", "idle"}
for i, v := range cpuTimes {
cpux := fmt.Sprintf("cpu%d", i/fieldsCount)
value, err := strconv.ParseFloat(v, 64)
if err != nil {
return err
}
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, value, cpux, cpuFields[i%fieldsCount])
2016-09-17 05:43:29 -07:00
}
2016-09-10 09:55:21 -07:00
return nil
2016-09-10 09:55:21 -07:00
}