node_exporter/exporter/runit_collector.go

81 lines
1.8 KiB
Go
Raw Normal View History

2013-07-25 13:30:35 +00:00
package exporter
import (
"github.com/prometheus/client_golang/prometheus"
"github.com/soundcloud/go-runit/runit"
)
type runitCollector struct {
2013-07-25 13:55:07 +00:00
name string
config config
state prometheus.Gauge
stateDesired prometheus.Gauge
stateNormal prometheus.Gauge
2013-07-25 13:30:35 +00:00
}
func NewRunitCollector(config config, registry prometheus.Registry) (runitCollector, error) {
c := runitCollector{
2013-07-25 13:55:07 +00:00
name: "runit_collector",
config: config,
state: prometheus.NewGauge(),
stateDesired: prometheus.NewGauge(),
stateNormal: prometheus.NewGauge(),
2013-07-25 13:30:35 +00:00
}
registry.Register(
2013-07-25 13:55:07 +00:00
"node_service_state",
"node_exporter: state of runit service.",
prometheus.NilLabels,
c.state,
)
registry.Register(
"node_service_desired_state",
"node_exporter: desired state of runit service.",
2013-07-25 13:55:07 +00:00
prometheus.NilLabels,
c.stateDesired,
)
registry.Register(
"node_service_normal_state",
"node_exporter: normal state of runit service.",
2013-07-25 13:30:35 +00:00
prometheus.NilLabels,
2013-07-25 13:55:07 +00:00
c.stateNormal,
2013-07-25 13:30:35 +00:00
)
return c, nil
}
func (c *runitCollector) Name() string { return c.name }
func (c *runitCollector) Update() (updates int, err error) {
services, err := runit.GetServices("/etc/service")
2013-07-25 13:30:35 +00:00
if err != nil {
return 0, err
}
for _, service := range services {
status, err := service.Status()
if err != nil {
debug(c.Name(), "Couldn't get status for %s: %s, skipping...", service.Name, err)
continue
2013-07-25 13:30:35 +00:00
}
2013-07-25 13:55:07 +00:00
2013-07-25 13:30:35 +00:00
debug(c.Name(), "%s is %d on pid %d for %d seconds", service.Name, status.State, status.Pid, status.Duration)
labels := map[string]string{
2013-07-25 13:55:07 +00:00
"service": service.Name,
2013-07-25 13:30:35 +00:00
}
2013-07-25 13:55:07 +00:00
c.state.Set(labels, float64(status.State))
c.stateDesired.Set(labels, float64(status.Want))
2013-07-25 13:30:35 +00:00
if status.NormallyUp {
2013-07-25 13:55:07 +00:00
c.stateNormal.Set(labels, 1)
2013-07-25 13:30:35 +00:00
} else {
2013-07-25 13:55:07 +00:00
c.stateNormal.Set(labels, 1)
2013-07-25 13:30:35 +00:00
}
2013-07-25 13:55:07 +00:00
updates += 3
2013-07-25 13:30:35 +00:00
}
2013-07-25 13:55:07 +00:00
2013-07-25 13:30:35 +00:00
return updates, err
}