1
0
Fork 0
telegraf/plugins/aggregators/registry.go

12 lines
219 B
Go
Raw Normal View History

package aggregators
import "github.com/influxdata/telegraf"
type Creator func() telegraf.Aggregator
var Aggregators = make(map[string]Creator)
func Add(name string, creator Creator) {
Aggregators[name] = creator
}