2014-02-07 08:09:39 -08:00
|
|
|
// +build runit
|
|
|
|
|
2014-02-18 03:35:11 -08:00
|
|
|
package collector
|
2013-07-25 06:30:35 -07:00
|
|
|
|
|
|
|
import (
|
2014-06-04 04:12:34 -07:00
|
|
|
"github.com/golang/glog"
|
2013-07-25 06:30:35 -07:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/soundcloud/go-runit/runit"
|
|
|
|
)
|
|
|
|
|
2014-06-26 12:16:21 -07:00
|
|
|
var (
|
|
|
|
runitLabelNames = []string{"service"}
|
|
|
|
|
|
|
|
runitState = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: Namespace,
|
|
|
|
Name: "service_state",
|
|
|
|
Help: "node_exporter: state of runit service.",
|
|
|
|
},
|
|
|
|
runitLabelNames,
|
|
|
|
)
|
|
|
|
runitStateDesired = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: Namespace,
|
|
|
|
Name: "service_desired_state",
|
|
|
|
Help: "node_exporter: desired state of runit service.",
|
|
|
|
},
|
|
|
|
runitLabelNames,
|
|
|
|
)
|
|
|
|
runitStateNormal = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: Namespace,
|
|
|
|
Name: "service_normal_state",
|
|
|
|
Help: "node_exporter: normal state of runit service.",
|
|
|
|
},
|
|
|
|
runitLabelNames,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2013-07-25 06:30:35 -07:00
|
|
|
type runitCollector struct {
|
2014-06-26 12:16:21 -07:00
|
|
|
config Config
|
2013-07-25 06:30:35 -07:00
|
|
|
}
|
|
|
|
|
2014-02-07 08:09:39 -08:00
|
|
|
func init() {
|
2014-06-04 04:12:34 -07:00
|
|
|
Factories["runit"] = NewRunitCollector
|
2014-02-07 08:09:39 -08:00
|
|
|
}
|
|
|
|
|
2014-06-26 12:16:21 -07:00
|
|
|
func NewRunitCollector(config Config) (Collector, error) {
|
2013-07-25 06:30:35 -07:00
|
|
|
c := runitCollector{
|
2014-06-26 12:16:21 -07:00
|
|
|
config: config,
|
2013-07-25 06:30:35 -07:00
|
|
|
}
|
|
|
|
|
2014-02-07 08:09:39 -08:00
|
|
|
return &c, nil
|
2013-07-25 06:30:35 -07:00
|
|
|
}
|
|
|
|
|
2014-10-29 07:16:43 -07:00
|
|
|
func (c *runitCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
2014-02-07 10:01:04 -08:00
|
|
|
services, err := runit.GetServices("/etc/service")
|
2013-07-25 06:30:35 -07:00
|
|
|
if err != nil {
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2013-07-25 06:30:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, service := range services {
|
|
|
|
status, err := service.Status()
|
|
|
|
if err != nil {
|
2014-06-04 04:12:34 -07:00
|
|
|
glog.V(1).Infof("Couldn't get status for %s: %s, skipping...", service.Name, err)
|
2013-07-30 07:08:54 -07:00
|
|
|
continue
|
2013-07-25 06:30:35 -07:00
|
|
|
}
|
2013-07-25 06:55:07 -07:00
|
|
|
|
2014-06-04 04:12:34 -07:00
|
|
|
glog.V(1).Infof("%s is %d on pid %d for %d seconds", service.Name, status.State, status.Pid, status.Duration)
|
2014-06-26 12:16:21 -07:00
|
|
|
runitState.WithLabelValues(service.Name).Set(float64(status.State))
|
|
|
|
runitStateDesired.WithLabelValues(service.Name).Set(float64(status.Want))
|
2013-07-25 06:30:35 -07:00
|
|
|
if status.NormallyUp {
|
2014-06-26 12:16:21 -07:00
|
|
|
runitStateNormal.WithLabelValues(service.Name).Set(1)
|
2013-07-25 06:30:35 -07:00
|
|
|
} else {
|
2014-06-26 12:16:21 -07:00
|
|
|
runitStateNormal.WithLabelValues(service.Name).Set(1)
|
2013-07-25 06:30:35 -07:00
|
|
|
}
|
|
|
|
}
|
2014-10-29 07:16:43 -07:00
|
|
|
runitState.Collect(ch)
|
|
|
|
runitStateDesired.Collect(ch)
|
|
|
|
runitStateNormal.Collect(ch)
|
|
|
|
return err
|
2013-07-25 06:30:35 -07:00
|
|
|
}
|