Browse Source

Merge pull request #116 from AlphaB/runit-state-change-time

Add the time of the last service state change to runit collector
pull/120/head
Julius Volz 9 years ago
parent
commit
ba52f63fe8
  1. 20
      collector/runit.go

20
collector/runit.go

@ -9,7 +9,7 @@ import (
) )
type runitCollector struct { type runitCollector struct {
state, stateDesired, stateNormal *prometheus.GaugeVec state, stateDesired, stateNormal, stateTimestamp *prometheus.GaugeVec
} }
func init() { func init() {
@ -29,7 +29,7 @@ func NewRunitCollector() (Collector, error) {
Namespace: Namespace, Namespace: Namespace,
Subsystem: subsystem, Subsystem: subsystem,
Name: "state", Name: "state",
Help: "state of runit service.", Help: "State of runit service.",
ConstLabels: constLabels, ConstLabels: constLabels,
}, },
labelNames, labelNames,
@ -39,7 +39,7 @@ func NewRunitCollector() (Collector, error) {
Namespace: Namespace, Namespace: Namespace,
Subsystem: subsystem, Subsystem: subsystem,
Name: "desired_state", Name: "desired_state",
Help: "desired state of runit service.", Help: "Desired state of runit service.",
ConstLabels: constLabels, ConstLabels: constLabels,
}, },
labelNames, labelNames,
@ -49,7 +49,17 @@ func NewRunitCollector() (Collector, error) {
Namespace: Namespace, Namespace: Namespace,
Subsystem: subsystem, Subsystem: subsystem,
Name: "normal_state", Name: "normal_state",
Help: "normal state of runit service.", Help: "Normal state of runit service.",
ConstLabels: constLabels,
},
labelNames,
),
stateTimestamp: prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: Namespace,
Subsystem: subsystem,
Name: "state_last_change_timestamp_seconds",
Help: "Unix timestamp of the last runit service state change.",
ConstLabels: constLabels, ConstLabels: constLabels,
}, },
labelNames, labelNames,
@ -73,6 +83,7 @@ func (c *runitCollector) Update(ch chan<- prometheus.Metric) error {
log.Debugf("%s is %d on pid %d for %d seconds", service.Name, status.State, status.Pid, status.Duration) log.Debugf("%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.state.WithLabelValues(service.Name).Set(float64(status.State))
c.stateDesired.WithLabelValues(service.Name).Set(float64(status.Want)) c.stateDesired.WithLabelValues(service.Name).Set(float64(status.Want))
c.stateTimestamp.WithLabelValues(service.Name).Set(float64(status.Timestamp.Unix()))
if status.NormallyUp { if status.NormallyUp {
c.stateNormal.WithLabelValues(service.Name).Set(1) c.stateNormal.WithLabelValues(service.Name).Set(1)
} else { } else {
@ -82,6 +93,7 @@ func (c *runitCollector) Update(ch chan<- prometheus.Metric) error {
c.state.Collect(ch) c.state.Collect(ch)
c.stateDesired.Collect(ch) c.stateDesired.Collect(ch)
c.stateNormal.Collect(ch) c.stateNormal.Collect(ch)
c.stateTimestamp.Collect(ch)
return nil return nil
} }

Loading…
Cancel
Save