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.
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.
Click to show internal directories.
Click to hide internal directories.