telegraf/plugins/processors/template/template.go

49 lines
1.0 KiB
Go
Raw Normal View History

2020-02-07 04:40:03 +08:00
package template
import (
"strings"
"text/template"
"github.com/influxdata/telegraf"
"github.com/influxdata/telegraf/plugins/processors"
2020-02-07 04:40:03 +08:00
)
type TemplateProcessor struct {
Tag string `toml:"tag"`
Template string `toml:"template"`
Log telegraf.Logger `toml:"-"`
2020-02-07 04:40:03 +08:00
tmpl *template.Template
}
func (r *TemplateProcessor) Apply(in ...telegraf.Metric) []telegraf.Metric {
// for each metric in "in" array
for _, metric := range in {
var b strings.Builder
newM := TemplateMetric{metric}
// supply TemplateMetric and Template from configuration to Template.Execute
err := r.tmpl.Execute(&b, &newM)
if err != nil {
r.Log.Errorf("failed to execute template: %v", err)
continue
2020-02-07 04:40:03 +08:00
}
metric.AddTag(r.Tag, b.String())
}
return in
}
func (r *TemplateProcessor) Init() error {
// create template
t, err := template.New("configured_template").Parse(r.Template)
r.tmpl = t
return err
}
func init() {
processors.Add("template", func() telegraf.Processor {
2020-02-07 04:40:03 +08:00
return &TemplateProcessor{}
})
}