2018-02-01 17:33:49 +00:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2020-07-02 12:43:14 +00:00
|
|
|
// +build openbsd,!amd64
|
2018-02-01 17:33:49 +00:00
|
|
|
// +build !nocpu
|
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
"unsafe"
|
|
|
|
|
2020-11-14 10:53:51 +00:00
|
|
|
"github.com/go-kit/log"
|
2018-02-01 17:33:49 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/sched.h>
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
type cpuCollector struct {
|
2019-12-31 16:19:37 +00:00
|
|
|
cpu typedDesc
|
|
|
|
logger log.Logger
|
2018-02-01 17:33:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2019-02-05 06:46:50 +00:00
|
|
|
registerCollector("cpu", defaultEnabled, NewCPUCollector)
|
2018-02-01 17:33:49 +00:00
|
|
|
}
|
|
|
|
|
2019-12-31 16:19:37 +00:00
|
|
|
func NewCPUCollector(logger log.Logger) (Collector, error) {
|
2018-02-01 17:33:49 +00:00
|
|
|
return &cpuCollector{
|
2019-12-31 16:19:37 +00:00
|
|
|
cpu: typedDesc{nodeCPUSecondsDesc, prometheus.CounterValue},
|
|
|
|
logger: logger,
|
2018-02-01 17:33:49 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cpuCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
|
|
|
clockb, err := unix.SysctlRaw("kern.clockrate")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
clock := *(*C.struct_clockinfo)(unsafe.Pointer(&clockb[0]))
|
|
|
|
hz := float64(clock.stathz)
|
|
|
|
|
|
|
|
ncpus, err := unix.SysctlUint32("hw.ncpu")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-02-05 06:46:50 +00:00
|
|
|
var cpTime [][C.CPUSTATES]C.int64_t
|
2018-02-01 17:33:49 +00:00
|
|
|
for i := 0; i < int(ncpus); i++ {
|
2019-02-05 06:46:50 +00:00
|
|
|
cpb, err := unix.SysctlRaw("kern.cp_time2", i)
|
2018-10-02 08:21:30 +00:00
|
|
|
if err != nil && err != unix.ENODEV {
|
2018-02-01 17:33:49 +00:00
|
|
|
return err
|
|
|
|
}
|
2018-10-02 08:21:30 +00:00
|
|
|
if err != unix.ENODEV {
|
2019-02-05 06:46:50 +00:00
|
|
|
cpTime = append(cpTime, *(*[C.CPUSTATES]C.int64_t)(unsafe.Pointer(&cpb[0])))
|
2018-10-02 08:21:30 +00:00
|
|
|
}
|
2018-02-01 17:33:49 +00:00
|
|
|
}
|
|
|
|
|
2019-02-05 06:46:50 +00:00
|
|
|
for cpu, time := range cpTime {
|
2018-02-01 17:33:49 +00:00
|
|
|
lcpu := strconv.Itoa(cpu)
|
|
|
|
ch <- c.cpu.mustNewConstMetric(float64(time[C.CP_USER])/hz, lcpu, "user")
|
|
|
|
ch <- c.cpu.mustNewConstMetric(float64(time[C.CP_NICE])/hz, lcpu, "nice")
|
|
|
|
ch <- c.cpu.mustNewConstMetric(float64(time[C.CP_SYS])/hz, lcpu, "system")
|
|
|
|
ch <- c.cpu.mustNewConstMetric(float64(time[C.CP_INTR])/hz, lcpu, "interrupt")
|
|
|
|
ch <- c.cpu.mustNewConstMetric(float64(time[C.CP_IDLE])/hz, lcpu, "idle")
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|