2015-09-26 08:36:40 -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.
|
|
|
|
|
2015-05-12 04:06:41 -07:00
|
|
|
// +build !nostat
|
2014-06-05 08:59:51 -07:00
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-09-26 05:53:46 -07:00
|
|
|
userHz = 100
|
2014-06-05 08:59:51 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
type statCollector struct {
|
2015-12-18 04:19:44 -08:00
|
|
|
cpu *prometheus.Desc
|
|
|
|
intr *prometheus.Desc
|
|
|
|
ctxt *prometheus.Desc
|
|
|
|
forks *prometheus.Desc
|
|
|
|
btime *prometheus.Desc
|
|
|
|
procsRunning *prometheus.Desc
|
|
|
|
procsBlocked *prometheus.Desc
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Factories["stat"] = NewStatCollector
|
|
|
|
}
|
|
|
|
|
2015-05-20 11:04:49 -07:00
|
|
|
// Takes a prometheus registry and returns a new Collector exposing
|
2015-09-29 11:52:33 -07:00
|
|
|
// kernel/system statistics.
|
2015-05-20 11:04:49 -07:00
|
|
|
func NewStatCollector() (Collector, error) {
|
2014-11-24 18:00:17 -08:00
|
|
|
return &statCollector{
|
2015-12-18 04:19:44 -08:00
|
|
|
cpu: prometheus.NewDesc(
|
2015-12-18 06:08:52 -08:00
|
|
|
prometheus.BuildFQName(Namespace, "", "cpu"),
|
|
|
|
"Seconds the cpus spent in each mode.",
|
2015-12-18 04:19:44 -08:00
|
|
|
[]string{"cpu", "mode"}, nil,
|
|
|
|
),
|
|
|
|
intr: prometheus.NewDesc(
|
2015-12-18 06:08:52 -08:00
|
|
|
prometheus.BuildFQName(Namespace, "", "intr"),
|
2015-12-18 04:19:44 -08:00
|
|
|
"Total number of interrupts serviced.",
|
2015-12-18 06:08:52 -08:00
|
|
|
nil, nil,
|
2015-12-18 04:19:44 -08:00
|
|
|
),
|
|
|
|
ctxt: prometheus.NewDesc(
|
2015-12-18 06:08:52 -08:00
|
|
|
prometheus.BuildFQName(Namespace, "", "context_switches"),
|
2015-12-18 04:19:44 -08:00
|
|
|
"Total number of context switches.",
|
2015-12-18 06:08:52 -08:00
|
|
|
nil, nil,
|
2015-12-18 04:19:44 -08:00
|
|
|
),
|
|
|
|
forks: prometheus.NewDesc(
|
2015-12-18 06:08:52 -08:00
|
|
|
prometheus.BuildFQName(Namespace, "", "forks"),
|
2015-12-18 04:19:44 -08:00
|
|
|
"Total number of forks.",
|
2015-12-18 06:08:52 -08:00
|
|
|
nil, nil,
|
2015-12-18 04:19:44 -08:00
|
|
|
),
|
|
|
|
btime: prometheus.NewDesc(
|
2015-12-18 06:08:52 -08:00
|
|
|
prometheus.BuildFQName(Namespace, "", "boot_time"),
|
2015-12-18 04:19:44 -08:00
|
|
|
"Node boot time, in unixtime.",
|
2015-12-18 06:08:52 -08:00
|
|
|
nil, nil,
|
2015-12-18 04:19:44 -08:00
|
|
|
),
|
2015-12-18 06:08:52 -08:00
|
|
|
procsRunning: prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(Namespace, "", "procs_running"),
|
2015-12-18 04:19:44 -08:00
|
|
|
"Number of processes in runnable state.",
|
2015-12-18 06:08:52 -08:00
|
|
|
nil, nil,
|
2015-12-18 04:19:44 -08:00
|
|
|
),
|
2015-12-18 06:08:52 -08:00
|
|
|
procsBlocked: prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(Namespace, "", "procs_blocked"),
|
2015-12-18 04:19:44 -08:00
|
|
|
"Number of processes blocked waiting for I/O to complete.",
|
2015-12-18 06:08:52 -08:00
|
|
|
nil, nil,
|
2014-11-24 18:00:17 -08:00
|
|
|
),
|
|
|
|
}, nil
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
|
|
|
|
2015-09-26 05:53:46 -07:00
|
|
|
// Expose kernel and system statistics.
|
2014-10-29 07:16:43 -07:00
|
|
|
func (c *statCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
2015-09-26 05:53:46 -07:00
|
|
|
file, err := os.Open(procFilePath("stat"))
|
2014-06-05 08:59:51 -07:00
|
|
|
if err != nil {
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
scanner := bufio.NewScanner(file)
|
|
|
|
for scanner.Scan() {
|
|
|
|
parts := strings.Fields(scanner.Text())
|
2015-02-06 10:44:22 -08:00
|
|
|
if len(parts) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
2014-06-05 08:59:51 -07:00
|
|
|
switch {
|
|
|
|
case strings.HasPrefix(parts[0], "cpu"):
|
2014-06-06 02:53:40 -07:00
|
|
|
// Export only per-cpu stats, it can be aggregated up in prometheus.
|
2014-06-05 08:59:51 -07:00
|
|
|
if parts[0] == "cpu" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// Only some of these may be present, depending on kernel version.
|
|
|
|
cpuFields := []string{"user", "nice", "system", "idle", "iowait", "irq", "softirq", "steal", "guest"}
|
2015-02-06 10:44:22 -08:00
|
|
|
// OpenVZ guests lack the "guest" CPU field, which needs to be ignored.
|
2015-07-14 05:57:20 -07:00
|
|
|
expectedFieldNum := len(cpuFields) + 1
|
2015-02-06 10:44:22 -08:00
|
|
|
if expectedFieldNum > len(parts) {
|
|
|
|
expectedFieldNum = len(parts)
|
|
|
|
}
|
2015-07-14 05:57:20 -07:00
|
|
|
for i, v := range parts[1:expectedFieldNum] {
|
2014-06-05 08:59:51 -07:00
|
|
|
value, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
2014-06-26 10:20:36 -07:00
|
|
|
// Convert from ticks to seconds
|
2015-05-12 07:24:48 -07:00
|
|
|
value /= userHz
|
2015-12-18 06:08:52 -08:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.cpu, prometheus.CounterValue, value, parts[0], cpuFields[i])
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
|
|
|
case parts[0] == "intr":
|
|
|
|
// Only expose the overall number, use the 'interrupts' collector for more detail.
|
|
|
|
value, err := strconv.ParseFloat(parts[1], 64)
|
|
|
|
if err != nil {
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
2015-12-18 06:08:52 -08:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.intr, prometheus.CounterValue, value)
|
2014-06-05 08:59:51 -07:00
|
|
|
case parts[0] == "ctxt":
|
|
|
|
value, err := strconv.ParseFloat(parts[1], 64)
|
|
|
|
if err != nil {
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
2015-12-18 06:08:52 -08:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.ctxt, prometheus.CounterValue, value)
|
2014-06-05 08:59:51 -07:00
|
|
|
case parts[0] == "processes":
|
|
|
|
value, err := strconv.ParseFloat(parts[1], 64)
|
|
|
|
if err != nil {
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
2015-12-18 06:08:52 -08:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.forks, prometheus.CounterValue, value)
|
2014-06-05 08:59:51 -07:00
|
|
|
case parts[0] == "btime":
|
|
|
|
value, err := strconv.ParseFloat(parts[1], 64)
|
|
|
|
if err != nil {
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
2015-12-18 06:08:52 -08:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.btime, prometheus.GaugeValue, value)
|
2014-06-05 08:59:51 -07:00
|
|
|
case parts[0] == "procs_running":
|
|
|
|
value, err := strconv.ParseFloat(parts[1], 64)
|
|
|
|
if err != nil {
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
2015-12-18 06:08:52 -08:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.procsRunning, prometheus.GaugeValue, value)
|
2014-06-05 08:59:51 -07:00
|
|
|
case parts[0] == "procs_blocked":
|
|
|
|
value, err := strconv.ParseFloat(parts[1], 64)
|
|
|
|
if err != nil {
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
2015-12-18 06:08:52 -08:00
|
|
|
ch <- prometheus.MustNewConstMetric(c.procsBlocked, prometheus.GaugeValue, value)
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|
|
|
|
}
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-06-05 08:59:51 -07:00
|
|
|
}
|