mirror of
https://github.com/prometheus/node_exporter
synced 2025-01-04 12:42:06 +00:00
211ddf33f1
Remove special tags necessary for gmond and runit collectors. All collectors get built. Selection of which collectors to use continues to happen via parameter.
91 lines
2.1 KiB
Go
91 lines
2.1 KiB
Go
// +build !norunit
|
|
|
|
package collector
|
|
|
|
import (
|
|
"github.com/golang/glog"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/soundcloud/go-runit/runit"
|
|
)
|
|
|
|
type runitCollector struct {
|
|
config Config
|
|
|
|
state, stateDesired, stateNormal *prometheus.GaugeVec
|
|
}
|
|
|
|
func init() {
|
|
Factories["runit"] = NewRunitCollector
|
|
}
|
|
|
|
func NewRunitCollector(config Config) (Collector, error) {
|
|
var (
|
|
subsystem = "service"
|
|
constLabels = prometheus.Labels{"supervisor": "runit"}
|
|
labelNames = []string{"service"}
|
|
)
|
|
|
|
return &runitCollector{
|
|
config: config,
|
|
state: prometheus.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Namespace: Namespace,
|
|
Subsystem: subsystem,
|
|
Name: "state",
|
|
Help: "state of runit service.",
|
|
ConstLabels: constLabels,
|
|
},
|
|
labelNames,
|
|
),
|
|
stateDesired: prometheus.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Namespace: Namespace,
|
|
Subsystem: subsystem,
|
|
Name: "desired_state",
|
|
Help: "desired state of runit service.",
|
|
ConstLabels: constLabels,
|
|
},
|
|
labelNames,
|
|
),
|
|
stateNormal: prometheus.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Namespace: Namespace,
|
|
Subsystem: subsystem,
|
|
Name: "normal_state",
|
|
Help: "normal state of runit service.",
|
|
ConstLabels: constLabels,
|
|
},
|
|
labelNames,
|
|
),
|
|
}, nil
|
|
}
|
|
|
|
func (c *runitCollector) Update(ch chan<- prometheus.Metric) error {
|
|
services, err := runit.GetServices("/etc/service")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
glog.V(1).Infof("%s is %d on pid %d for %d seconds", service.Name, status.State, status.Pid, status.Duration)
|
|
c.state.WithLabelValues(service.Name).Set(float64(status.State))
|
|
c.stateDesired.WithLabelValues(service.Name).Set(float64(status.Want))
|
|
if status.NormallyUp {
|
|
c.stateNormal.WithLabelValues(service.Name).Set(1)
|
|
} else {
|
|
c.stateNormal.WithLabelValues(service.Name).Set(0)
|
|
}
|
|
}
|
|
c.state.Collect(ch)
|
|
c.stateDesired.Collect(ch)
|
|
c.stateNormal.Collect(ch)
|
|
|
|
return nil
|
|
}
|