mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-30 07:59:53 -08:00
25ea90369c
Last login is disabled by default as it's broken on ubuntu 12.04 Interrupts is disabled by default as it's very granular and we'll have total interrupts from /proc/stat Allow ignoring devices from diskstats, ignore ram and loop devices by default. Use glog for logging.
19 lines
504 B
Go
19 lines
504 B
Go
// 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 = make(map[string]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)
|
|
}
|
|
|
|
type Config struct {
|
|
Attributes map[string]string `json:"attributes"`
|
|
}
|