2015-09-15 18:16:53 +00:00
|
|
|
package amqp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-09-17 19:29:59 +00:00
|
|
|
"log"
|
|
|
|
"sync"
|
2015-09-23 17:02:34 +00:00
|
|
|
"time"
|
2015-09-15 18:16:53 +00:00
|
|
|
|
|
|
|
"github.com/influxdb/influxdb/client"
|
|
|
|
"github.com/influxdb/telegraf/outputs"
|
|
|
|
"github.com/streadway/amqp"
|
|
|
|
)
|
|
|
|
|
|
|
|
type AMQP struct {
|
|
|
|
// AMQP brokers to send metrics to
|
|
|
|
URL string
|
|
|
|
// AMQP exchange
|
|
|
|
Exchange string
|
2015-09-16 19:10:26 +00:00
|
|
|
// Routing Key Tag
|
|
|
|
RoutingTag string `toml:"routing_tag"`
|
2015-09-15 18:16:53 +00:00
|
|
|
|
|
|
|
channel *amqp.Channel
|
2015-09-17 19:29:59 +00:00
|
|
|
sync.Mutex
|
2015-09-15 18:16:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var sampleConfig = `
|
2015-10-15 21:53:29 +00:00
|
|
|
# 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"
|
2015-09-15 18:16:53 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
func (q *AMQP) Connect() error {
|
2015-09-17 19:29:59 +00:00
|
|
|
q.Lock()
|
|
|
|
defer q.Unlock()
|
2015-09-15 18:16:53 +00:00
|
|
|
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
|
2015-09-17 19:29:59 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
}()
|
2015-09-15 18:16:53 +00:00
|
|
|
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(bp client.BatchPoints) error {
|
2015-09-17 19:29:59 +00:00
|
|
|
q.Lock()
|
|
|
|
defer q.Unlock()
|
2015-09-15 18:16:53 +00:00
|
|
|
if len(bp.Points) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-23 17:02:34 +00:00
|
|
|
var zero_time time.Time
|
2015-09-15 18:16:53 +00:00
|
|
|
for _, p := range bp.Points {
|
|
|
|
// Combine tags from Point and BatchPoints and grab the resulting
|
2015-09-16 00:25:56 +00:00
|
|
|
// line-protocol output string to write to AMQP
|
2015-09-15 18:16:53 +00:00
|
|
|
var value, key string
|
|
|
|
if p.Raw != "" {
|
|
|
|
value = p.Raw
|
|
|
|
} else {
|
|
|
|
for k, v := range bp.Tags {
|
|
|
|
if p.Tags == nil {
|
|
|
|
p.Tags = make(map[string]string, len(bp.Tags))
|
|
|
|
}
|
|
|
|
p.Tags[k] = v
|
|
|
|
}
|
2015-09-23 17:02:34 +00:00
|
|
|
if p.Time == zero_time {
|
|
|
|
if bp.Time == zero_time {
|
|
|
|
p.Time = time.Now()
|
|
|
|
} else {
|
|
|
|
p.Time = bp.Time
|
|
|
|
}
|
|
|
|
}
|
2015-09-15 18:16:53 +00:00
|
|
|
value = p.MarshalString()
|
|
|
|
}
|
|
|
|
|
2015-09-16 00:25:56 +00:00
|
|
|
if q.RoutingTag != "" {
|
|
|
|
if h, ok := p.Tags[q.RoutingTag]; ok {
|
|
|
|
key = h
|
|
|
|
}
|
2015-09-15 18:16:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err := q.channel.Publish(
|
|
|
|
q.Exchange, // exchange
|
|
|
|
key, // routing key
|
|
|
|
false, // mandatory
|
|
|
|
false, // immediate
|
|
|
|
amqp.Publishing{
|
|
|
|
ContentType: "text/plain",
|
|
|
|
Body: []byte(value),
|
|
|
|
})
|
|
|
|
if err != nil {
|
2015-09-16 00:25:56 +00:00
|
|
|
return fmt.Errorf("FAILED to send amqp message: %s", err)
|
2015-09-15 18:16:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
outputs.Add("amqp", func() outputs.Output {
|
|
|
|
return &AMQP{}
|
|
|
|
})
|
|
|
|
}
|