Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add runit exporter #2

Merged
merged 2 commits into from
Jul 29, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion exporter/exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,17 @@ func New(configFile string) (e exporter, err error) {
log.Fatalf("Couldn't attach collector: %s", err)
}

cr, err := NewRunitCollector(e.config, e.registry)
if err != nil {
log.Fatalf("Couldn't attach collector: %s", err)
}

cg, err := NewGmondCollector(e.config, e.registry)
if err != nil {
log.Fatalf("Couldn't attach collector: %s", err)
}

e.collectors = []Collector{&cn, &cg}
e.collectors = []Collector{&cn, &cr, &cg}

if e.config.ListeningAddress != "" {
e.listeningAddress = e.config.ListeningAddress
Expand Down
79 changes: 79 additions & 0 deletions exporter/runit_collector.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
package exporter

import (
"github.com/prometheus/client_golang/prometheus"
"github.com/soundcloud/go-runit/runit"
)

type runitCollector struct {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cruft.

name string
config config
state prometheus.Gauge
stateDesired prometheus.Gauge
stateNormal prometheus.Gauge
}

func NewRunitCollector(config config, registry prometheus.Registry) (runitCollector, error) {
c := runitCollector{
name: "runit_collector",
config: config,
state: prometheus.NewGauge(),
stateDesired: prometheus.NewGauge(),
stateNormal: prometheus.NewGauge(),
}

registry.Register(

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since you are exporting the duration, the metric name should convey that fact! :-)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed it to node_service_duration which still is a bit confusing. Any suggestion? The metric answers how long a service was in a specific state. It's still kinda cumbersome if you look at the labels, so happy for suggestions for a different structure in general.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uptime?

Hard to say. I think a good starting point is answering, "what do I intend to convey with this data, and how should it be used?"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not only uptime, it's also downtime, time trying to get up etc.. I'll look into adding prometheus alerts based on those metrics and hope I'll come up with better naming on the way.

"node_service_state",
"node_exporter: state of runit service.",
prometheus.NilLabels,
c.state,
)

registry.Register(
"node_service_desired_state",
"node_exporter: desired status of runit service.",
prometheus.NilLabels,
c.stateDesired,
)

registry.Register(
"node_service_normal_state",
"node_exporter: status of runit service.",
prometheus.NilLabels,
c.stateNormal,
)

return c, nil
}

func (c *runitCollector) Name() string { return c.name }

func (c *runitCollector) Update() (updates int, err error) {
services, err := runit.GetServices()
if err != nil {
return 0, err
}

for _, service := range services {
status, err := service.Status()
if err != nil {
return 0, err
}

debug(c.Name(), "%s is %d on pid %d for %d seconds", service.Name, status.State, status.Pid, status.Duration)
labels := map[string]string{
"service": service.Name,
}

c.state.Set(labels, float64(status.State))
c.stateDesired.Set(labels, float64(status.Want))
if status.NormallyUp {
c.stateNormal.Set(labels, 1)
} else {
c.stateNormal.Set(labels, 1)
}
updates += 3
}

return updates, err
}