162 lines
3.3 KiB
Go
162 lines
3.3 KiB
Go
package amqp
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"log"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/influxdb/influxdb/client/v2"
|
|
"github.com/influxdb/telegraf/outputs"
|
|
"github.com/streadway/amqp"
|
|
)
|
|
|
|
type AMQP struct {
|
|
// AMQP brokers to send metrics to
|
|
URL string
|
|
// AMQP exchange
|
|
Exchange string
|
|
// Routing Key Tag
|
|
RoutingTag string `toml:"routing_tag"`
|
|
// InfluxDB database
|
|
Database string
|
|
// InfluxDB retention policy
|
|
RetentionPolicy string
|
|
// InfluxDB precision
|
|
Precision string
|
|
|
|
channel *amqp.Channel
|
|
sync.Mutex
|
|
headers amqp.Table
|
|
}
|
|
|
|
const (
|
|
DefaultRetentionPolicy = "default"
|
|
DefaultDatabase = "telegraf"
|
|
DefaultPrecision = "s"
|
|
)
|
|
|
|
var sampleConfig = `
|
|
# AMQP url
|
|
url = "amqp://localhost:5672/influxdb"
|
|
# AMQP exchange
|
|
exchange = "telegraf"
|
|
# Telegraf tag to use as a routing key
|
|
# ie, if this tag exists, it's value will be used as the routing key
|
|
routing_tag = "host"
|
|
|
|
# InfluxDB retention policy
|
|
#retention_policy = "default"
|
|
# InfluxDB database
|
|
#database = "telegraf"
|
|
# InfluxDB precision
|
|
#precision = "s"
|
|
`
|
|
|
|
func (q *AMQP) Connect() error {
|
|
q.Lock()
|
|
defer q.Unlock()
|
|
|
|
q.headers = amqp.Table{
|
|
"precision": q.Precision,
|
|
"database": q.Database,
|
|
"retention_policy": q.RetentionPolicy,
|
|
}
|
|
|
|
connection, err := amqp.Dial(q.URL)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
channel, err := connection.Channel()
|
|
if err != nil {
|
|
return fmt.Errorf("Failed to open a channel: %s", err)
|
|
}
|
|
|
|
err = channel.ExchangeDeclare(
|
|
q.Exchange, // name
|
|
"topic", // type
|
|
true, // durable
|
|
false, // delete when unused
|
|
false, // internal
|
|
false, // no-wait
|
|
nil, // arguments
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("Failed to declare an exchange: %s", err)
|
|
}
|
|
q.channel = channel
|
|
go func() {
|
|
log.Printf("Closing: %s", <-connection.NotifyClose(make(chan *amqp.Error)))
|
|
log.Printf("Trying to reconnect")
|
|
for err := q.Connect(); err != nil; err = q.Connect() {
|
|
log.Println(err)
|
|
time.Sleep(10 * time.Second)
|
|
}
|
|
|
|
}()
|
|
return nil
|
|
}
|
|
|
|
func (q *AMQP) Close() error {
|
|
return q.channel.Close()
|
|
}
|
|
|
|
func (q *AMQP) SampleConfig() string {
|
|
return sampleConfig
|
|
}
|
|
|
|
func (q *AMQP) Description() string {
|
|
return "Configuration for the AMQP server to send metrics to"
|
|
}
|
|
|
|
func (q *AMQP) Write(points []*client.Point) error {
|
|
q.Lock()
|
|
defer q.Unlock()
|
|
if len(points) == 0 {
|
|
return nil
|
|
}
|
|
var outbuf = make(map[string][][]byte)
|
|
|
|
for _, p := range points {
|
|
// Combine tags from Point and BatchPoints and grab the resulting
|
|
// line-protocol output string to write to AMQP
|
|
var value, key string
|
|
value = p.String()
|
|
|
|
if q.RoutingTag != "" {
|
|
if h, ok := p.Tags()[q.RoutingTag]; ok {
|
|
key = h
|
|
}
|
|
}
|
|
outbuf[key] = append(outbuf[key], []byte(value))
|
|
|
|
}
|
|
for key, buf := range outbuf {
|
|
err := q.channel.Publish(
|
|
q.Exchange, // exchange
|
|
key, // routing key
|
|
false, // mandatory
|
|
false, // immediate
|
|
amqp.Publishing{
|
|
Headers: q.headers,
|
|
ContentType: "text/plain",
|
|
Body: bytes.Join(buf, []byte("\n")),
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("FAILED to send amqp message: %s", err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
outputs.Add("amqp", func() outputs.Output {
|
|
return &AMQP{
|
|
Database: DefaultDatabase,
|
|
Precision: DefaultPrecision,
|
|
RetentionPolicy: DefaultRetentionPolicy,
|
|
}
|
|
})
|
|
}
|