mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-10 07:34:09 -08:00
872f921867
This is the first step to make the exporter more testable.
47 lines
1 KiB
Go
47 lines
1 KiB
Go
// +build !noattributes
|
|
|
|
package collector
|
|
|
|
import (
|
|
"github.com/golang/glog"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
type attributesCollector struct {
|
|
config Config
|
|
metric *prometheus.GaugeVec
|
|
}
|
|
|
|
func init() {
|
|
Factories["attributes"] = NewAttributesCollector
|
|
}
|
|
|
|
// Takes a config struct and prometheus registry and returns a new Collector exposing
|
|
// labels from the config.
|
|
func NewAttributesCollector(config Config) (Collector, error) {
|
|
labelNames := []string{}
|
|
for l := range config.Attributes {
|
|
labelNames = append(labelNames, l)
|
|
}
|
|
|
|
return &attributesCollector{
|
|
config: config,
|
|
metric: prometheus.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Namespace: Namespace,
|
|
Name: "attributes",
|
|
Help: "The node_exporter attributes.",
|
|
},
|
|
labelNames,
|
|
),
|
|
}, nil
|
|
}
|
|
|
|
func (c *attributesCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
|
glog.V(1).Info("Set node_attributes{%v}: 1", c.config.Attributes)
|
|
c.metric.Reset()
|
|
c.metric.With(c.config.Attributes).Set(1)
|
|
c.metric.Collect(ch)
|
|
return err
|
|
}
|