2014-06-04 11:12:34 +00:00
|
|
|
// +build !noloadavg
|
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/golang/glog"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
procLoad = "/proc/loadavg"
|
|
|
|
)
|
|
|
|
|
|
|
|
type loadavgCollector struct {
|
2014-06-26 17:20:36 +00:00
|
|
|
config Config
|
2014-11-25 02:00:17 +00:00
|
|
|
metric prometheus.Gauge
|
2014-06-04 11:12:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Factories["loadavg"] = NewLoadavgCollector
|
|
|
|
}
|
|
|
|
|
|
|
|
// Takes a config struct and prometheus registry and returns a new Collector exposing
|
|
|
|
// load, seconds since last login and a list of tags as specified by config.
|
2014-06-26 17:20:36 +00:00
|
|
|
func NewLoadavgCollector(config Config) (Collector, error) {
|
2014-11-25 02:00:17 +00:00
|
|
|
return &loadavgCollector{
|
2014-06-26 17:20:36 +00:00
|
|
|
config: config,
|
2014-11-25 02:00:17 +00:00
|
|
|
metric: prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Namespace: Namespace,
|
|
|
|
Name: "load1",
|
|
|
|
Help: "1m load average.",
|
|
|
|
}),
|
|
|
|
}, nil
|
2014-06-04 11:12:34 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 14:16:43 +00:00
|
|
|
func (c *loadavgCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
2014-06-04 11:12:34 +00:00
|
|
|
load, err := getLoad1()
|
|
|
|
if err != nil {
|
2014-10-29 14:16:43 +00:00
|
|
|
return fmt.Errorf("Couldn't get load: %s", err)
|
2014-06-04 11:12:34 +00:00
|
|
|
}
|
|
|
|
glog.V(1).Infof("Set node_load: %f", load)
|
2014-11-25 02:00:17 +00:00
|
|
|
c.metric.Set(load)
|
|
|
|
c.metric.Collect(ch)
|
2014-10-29 14:16:43 +00:00
|
|
|
return err
|
2014-06-04 11:12:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getLoad1() (float64, error) {
|
|
|
|
data, err := ioutil.ReadFile(procLoad)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return parseLoad(string(data))
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseLoad(data string) (float64, error) {
|
|
|
|
parts := strings.Fields(data)
|
|
|
|
load, err := strconv.ParseFloat(parts[0], 64)
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("Could not parse load '%s': %s", parts[0], err)
|
|
|
|
}
|
|
|
|
return load, nil
|
|
|
|
}
|