Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
Manager maintains a list of active producers. Producers can register with the manager to allow readers to read all metrics provided by them. Readers can retrieve all producers registered with the manager, read metrics from the producers and export them.
func GlobalManager ¶
func GlobalManager() *Manager
GlobalManager is a single instance of producer manager that is used by all producers and all readers.
func (*Manager) AddProducer ¶
AddProducer adds the producer to the Manager if it is not already present.
func (*Manager) DeleteProducer ¶
DeleteProducer deletes the producer from the Manager if it is present.
func (*Manager) GetAll ¶
GetAll returns a slice of all producer currently registered with the Manager. For each call it generates a new slice. The slice should not be cached as registration may change at any time. It is typically called periodically by exporter to read metrics from the producers.
type Producer ¶
type Producer interface { // Read should return the current values of all metrics supported by this // metric provider. // The returned metrics should be unique for each combination of name and // resource. Read() []*metricdata.Metric }
Producer is a source of metrics.