telegraf/outputs/riemann/riemann.go

96 lines
1.5 KiB
Go
Raw Normal View History

2015-10-22 21:50:19 +00:00
package riemann
import (
"errors"
"fmt"
"os"
"github.com/amir/raidman"
"github.com/influxdb/influxdb/client/v2"
"github.com/influxdb/telegraf/outputs"
)
type Riemann struct {
URL string
Transport string
client *raidman.Client
2015-10-22 21:50:19 +00:00
}
var sampleConfig = `
# URL of server
url = "localhost:5555"
# transport protocol to use either tcp or udp
transport = "tcp"
`
func (r *Riemann) Connect() error {
c, err := raidman.Dial(r.Transport, r.URL)
if err != nil {
return err
}
r.client = c
2015-10-22 21:50:19 +00:00
return nil
}
func (r *Riemann) Close() error {
r.client.Close()
return nil
}
func (r *Riemann) SampleConfig() string {
return sampleConfig
}
func (r *Riemann) Description() string {
return "Configuration for the Riemann server to send metrics to"
}
func (r *Riemann) Write(points []*client.Point) error {
if len(points) == 0 {
return nil
}
var events []*raidman.Event
for _, p := range points {
ev := buildEvent(p)
events = append(events, ev)
2015-10-22 21:50:19 +00:00
}
var senderr = r.client.SendMulti(events)
if senderr != nil {
return errors.New(fmt.Sprintf("FAILED to send riemann message: %s\n",
senderr))
}
return nil
}
func buildEvent(p *client.Point) *raidman.Event {
host, ok := p.Tags()["host"]
if !ok {
2015-10-22 21:50:19 +00:00
hostname, err := os.Hostname()
if err != nil {
host = "unknown"
} else {
host = hostname
}
}
var event = &raidman.Event{
Host: host,
Service: p.Name(),
Metric: p.Fields()["value"],
}
return event
2015-10-22 21:50:19 +00:00
}
func init() {
outputs.Add("riemann", func() outputs.Output {
return &Riemann{}
})
}