node_exporter/collector/runit_collector.go

83 lines
1.9 KiB
Go
Raw Normal View History

// +build runit
package collector
2013-07-25 06:30:35 -07:00
import (
"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
}
func init() {
Factories["runit"] = NewRunitCollector
}
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
}
return &c, nil
2013-07-25 06:30:35 -07:00
}
func (c *runitCollector) Update(ch chan<- prometheus.Metric) (err error) {
services, err := runit.GetServices("/etc/service")
2013-07-25 06:30:35 -07:00
if err != nil {
return err
2013-07-25 06:30:35 -07:00
}
for _, service := range services {
status, err := service.Status()
if err != nil {
glog.V(1).Infof("Couldn't get status for %s: %s, skipping...", service.Name, err)
continue
2013-07-25 06:30:35 -07:00
}
2013-07-25 06:55:07 -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
}
}
runitState.Collect(ch)
runitStateDesired.Collect(ch)
runitStateNormal.Collect(ch)
return err
2013-07-25 06:30:35 -07:00
}