telegraf/plugins/inputs/trig/trig.go

46 lines
813 B
Go
Raw Permalink Normal View History

2015-12-01 00:29:55 +00:00
package trig
import (
"math"
2016-01-07 20:39:43 +00:00
"github.com/influxdb/telegraf/plugins/inputs"
2015-12-01 00:29:55 +00:00
)
type Trig struct {
x float64
Amplitude float64
}
var TrigConfig = `
# Set the amplitude
amplitude = 10.0
`
func (s *Trig) SampleConfig() string {
return TrigConfig
}
func (s *Trig) Description() string {
return "Inserts sine and cosine waves for demonstration purposes"
}
2016-01-07 20:39:43 +00:00
func (s *Trig) Gather(acc inputs.Accumulator) error {
2015-12-01 00:29:55 +00:00
sinner := math.Sin((s.x*math.Pi)/5.0) * s.Amplitude
cosinner := math.Cos((s.x*math.Pi)/5.0) * s.Amplitude
fields := make(map[string]interface{})
fields["sine"] = sinner
fields["cosine"] = cosinner
tags := make(map[string]string)
s.x += 1.0
acc.AddFields("trig", fields, tags)
return nil
}
func init() {
2016-01-07 20:39:43 +00:00
inputs.Add("Trig", func() inputs.Input { return &Trig{x: 0.0} })
2015-12-01 00:29:55 +00:00
}