2014-02-18 11:35:11 +00:00
|
|
|
// Exporter is a prometheus exporter using multiple Factories to collect and export system metrics.
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Factories []func(Config, prometheus.Registry) (Collector, error)
|
|
|
|
|
|
|
|
// Interface a collector has to implement.
|
|
|
|
type Collector interface {
|
|
|
|
// Get new metrics and expose them via prometheus registry.
|
|
|
|
Update() (n int, err error)
|
|
|
|
|
2014-02-18 12:17:40 +00:00
|
|
|
// Returns the name of the collector.
|
2014-02-18 11:35:11 +00:00
|
|
|
Name() string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Attributes map[string]string `json:"attributes"`
|
|
|
|
}
|