2015-09-15 18:16:53 +00:00
|
|
|
package amqp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-09-17 19:29:59 +00:00
|
|
|
"log"
|
2017-04-27 18:10:30 +00:00
|
|
|
"net"
|
2016-03-16 18:44:11 +00:00
|
|
|
"strings"
|
2015-09-17 19:29:59 +00:00
|
|
|
"sync"
|
2015-09-23 17:02:34 +00:00
|
|
|
"time"
|
2015-09-15 18:16:53 +00:00
|
|
|
|
2016-01-27 21:21:36 +00:00
|
|
|
"github.com/influxdata/telegraf"
|
2016-02-03 19:59:34 +00:00
|
|
|
"github.com/influxdata/telegraf/internal"
|
2016-01-27 23:15:14 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/outputs"
|
2016-02-10 22:50:07 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/serializers"
|
|
|
|
|
2015-09-15 18:16:53 +00:00
|
|
|
"github.com/streadway/amqp"
|
|
|
|
)
|
|
|
|
|
2017-04-27 18:10:30 +00:00
|
|
|
type client struct {
|
|
|
|
conn *amqp.Connection
|
|
|
|
channel *amqp.Channel
|
|
|
|
headers amqp.Table
|
|
|
|
}
|
|
|
|
|
2015-09-15 18:16:53 +00:00
|
|
|
type AMQP struct {
|
|
|
|
// AMQP brokers to send metrics to
|
|
|
|
URL string
|
|
|
|
// AMQP exchange
|
|
|
|
Exchange string
|
2016-03-16 18:44:11 +00:00
|
|
|
// AMQP Auth method
|
|
|
|
AuthMethod string
|
2015-09-16 19:10:26 +00:00
|
|
|
// Routing Key Tag
|
|
|
|
RoutingTag string `toml:"routing_tag"`
|
2015-10-30 09:02:14 +00:00
|
|
|
// InfluxDB database
|
|
|
|
Database string
|
|
|
|
// InfluxDB retention policy
|
|
|
|
RetentionPolicy string
|
2016-08-26 15:31:04 +00:00
|
|
|
// InfluxDB precision (DEPRECATED)
|
2015-10-30 09:02:14 +00:00
|
|
|
Precision string
|
2017-04-27 18:10:30 +00:00
|
|
|
// Connection timeout
|
|
|
|
Timeout internal.Duration
|
2015-09-15 18:16:53 +00:00
|
|
|
|
2016-02-03 19:59:34 +00:00
|
|
|
// Path to CA file
|
|
|
|
SSLCA string `toml:"ssl_ca"`
|
|
|
|
// Path to host cert file
|
|
|
|
SSLCert string `toml:"ssl_cert"`
|
|
|
|
// Path to cert key file
|
|
|
|
SSLKey string `toml:"ssl_key"`
|
|
|
|
// Use SSL but skip chain & host verification
|
|
|
|
InsecureSkipVerify bool
|
|
|
|
|
2015-09-17 19:29:59 +00:00
|
|
|
sync.Mutex
|
2017-04-27 18:10:30 +00:00
|
|
|
c *client
|
2016-02-10 22:50:07 +00:00
|
|
|
|
|
|
|
serializer serializers.Serializer
|
2015-09-15 18:16:53 +00:00
|
|
|
}
|
|
|
|
|
2016-03-16 18:44:11 +00:00
|
|
|
type externalAuth struct{}
|
|
|
|
|
|
|
|
func (a *externalAuth) Mechanism() string {
|
|
|
|
return "EXTERNAL"
|
|
|
|
}
|
|
|
|
func (a *externalAuth) Response() string {
|
|
|
|
return fmt.Sprintf("\000")
|
|
|
|
}
|
|
|
|
|
2015-10-30 09:02:14 +00:00
|
|
|
const (
|
2016-03-16 18:44:11 +00:00
|
|
|
DefaultAuthMethod = "PLAIN"
|
2015-10-30 09:02:14 +00:00
|
|
|
DefaultRetentionPolicy = "default"
|
|
|
|
DefaultDatabase = "telegraf"
|
|
|
|
)
|
|
|
|
|
2015-09-15 18:16:53 +00:00
|
|
|
var sampleConfig = `
|
2016-02-18 21:26:51 +00:00
|
|
|
## AMQP url
|
2015-10-15 21:53:29 +00:00
|
|
|
url = "amqp://localhost:5672/influxdb"
|
2016-02-18 21:26:51 +00:00
|
|
|
## AMQP exchange
|
2015-10-15 21:53:29 +00:00
|
|
|
exchange = "telegraf"
|
2016-03-16 18:44:11 +00:00
|
|
|
## Auth method. PLAIN and EXTERNAL are supported
|
2017-03-03 18:24:50 +00:00
|
|
|
## Using EXTERNAL requires enabling the rabbitmq_auth_mechanism_ssl plugin as
|
|
|
|
## described here: https://www.rabbitmq.com/plugins.html
|
2016-03-16 18:44:11 +00:00
|
|
|
# auth_method = "PLAIN"
|
2016-02-18 21:26:51 +00:00
|
|
|
## Telegraf tag to use as a routing key
|
2017-04-27 21:59:18 +00:00
|
|
|
## ie, if this tag exists, its value will be used as the routing key
|
2015-10-15 21:53:29 +00:00
|
|
|
routing_tag = "host"
|
2015-10-30 09:02:14 +00:00
|
|
|
|
2016-02-18 21:26:51 +00:00
|
|
|
## InfluxDB retention policy
|
2016-02-03 19:59:34 +00:00
|
|
|
# retention_policy = "default"
|
2016-02-18 21:26:51 +00:00
|
|
|
## InfluxDB database
|
2016-02-03 19:59:34 +00:00
|
|
|
# database = "telegraf"
|
|
|
|
|
2017-04-27 18:10:30 +00:00
|
|
|
## Write timeout, formatted as a string. If not provided, will default
|
|
|
|
## to 5s. 0s means no timeout (not recommended).
|
|
|
|
# timeout = "5s"
|
|
|
|
|
2016-02-18 21:26:51 +00:00
|
|
|
## Optional SSL Config
|
2016-02-03 19:59:34 +00:00
|
|
|
# ssl_ca = "/etc/telegraf/ca.pem"
|
|
|
|
# ssl_cert = "/etc/telegraf/cert.pem"
|
|
|
|
# ssl_key = "/etc/telegraf/key.pem"
|
2016-02-18 21:26:51 +00:00
|
|
|
## Use SSL but skip chain & host verification
|
2016-02-03 19:59:34 +00:00
|
|
|
# insecure_skip_verify = false
|
2016-02-10 22:50:07 +00:00
|
|
|
|
2016-03-31 23:50:24 +00:00
|
|
|
## Data format to output.
|
2017-04-27 21:59:18 +00:00
|
|
|
## Each data format has its own unique set of configuration options, read
|
2016-02-18 21:26:51 +00:00
|
|
|
## more about them here:
|
|
|
|
## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_OUTPUT.md
|
2016-02-10 22:50:07 +00:00
|
|
|
data_format = "influx"
|
2015-09-15 18:16:53 +00:00
|
|
|
`
|
|
|
|
|
2016-02-10 22:50:07 +00:00
|
|
|
func (a *AMQP) SetSerializer(serializer serializers.Serializer) {
|
|
|
|
a.serializer = serializer
|
|
|
|
}
|
|
|
|
|
2015-09-15 18:16:53 +00:00
|
|
|
func (q *AMQP) Connect() error {
|
2017-04-27 18:10:30 +00:00
|
|
|
headers := amqp.Table{
|
2015-10-30 09:02:14 +00:00
|
|
|
"database": q.Database,
|
|
|
|
"retention_policy": q.RetentionPolicy,
|
|
|
|
}
|
|
|
|
|
2016-01-15 12:35:43 +00:00
|
|
|
var connection *amqp.Connection
|
2016-02-03 19:59:34 +00:00
|
|
|
// make new tls config
|
|
|
|
tls, err := internal.GetTLSConfig(
|
|
|
|
q.SSLCert, q.SSLKey, q.SSLCA, q.InsecureSkipVerify)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-01-15 12:35:43 +00:00
|
|
|
|
2016-03-16 18:44:11 +00:00
|
|
|
// parse auth method
|
|
|
|
var sasl []amqp.Authentication // nil by default
|
|
|
|
|
|
|
|
if strings.ToUpper(q.AuthMethod) == "EXTERNAL" {
|
|
|
|
sasl = []amqp.Authentication{&externalAuth{}}
|
|
|
|
}
|
|
|
|
|
|
|
|
amqpConf := amqp.Config{
|
|
|
|
TLSClientConfig: tls,
|
|
|
|
SASL: sasl, // if nil, it will be PLAIN
|
2017-04-27 18:10:30 +00:00
|
|
|
Dial: func(network, addr string) (net.Conn, error) {
|
|
|
|
return net.DialTimeout(network, addr, q.Timeout.Duration)
|
|
|
|
},
|
2016-01-15 12:35:43 +00:00
|
|
|
}
|
2016-03-16 18:44:11 +00:00
|
|
|
|
|
|
|
connection, err = amqp.DialConfig(q.URL, amqpConf)
|
2015-09-15 18:16:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-03-03 18:24:50 +00:00
|
|
|
|
2015-09-15 18:16:53 +00:00
|
|
|
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)
|
|
|
|
}
|
2017-04-27 18:10:30 +00:00
|
|
|
|
|
|
|
q.setClient(&client{
|
|
|
|
conn: connection,
|
|
|
|
channel: channel,
|
|
|
|
headers: headers,
|
|
|
|
})
|
|
|
|
|
2015-09-17 19:29:59 +00:00
|
|
|
go func() {
|
2017-03-03 18:24:50 +00:00
|
|
|
err := <-connection.NotifyClose(make(chan *amqp.Error))
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
2017-04-27 18:10:30 +00:00
|
|
|
|
|
|
|
q.setClient(nil)
|
|
|
|
|
2017-03-03 18:24:50 +00:00
|
|
|
log.Printf("I! Closing: %s", err)
|
2016-09-30 21:37:56 +00:00
|
|
|
log.Printf("I! Trying to reconnect")
|
2015-09-17 19:29:59 +00:00
|
|
|
for err := q.Connect(); err != nil; err = q.Connect() {
|
2016-09-30 21:37:56 +00:00
|
|
|
log.Println("E! ", err.Error())
|
2015-09-17 19:29:59 +00:00
|
|
|
time.Sleep(10 * time.Second)
|
|
|
|
}
|
|
|
|
}()
|
2015-09-15 18:16:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (q *AMQP) Close() error {
|
2017-04-27 18:10:30 +00:00
|
|
|
c := q.getClient()
|
|
|
|
if c == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
err := c.conn.Close()
|
2017-03-03 18:24:50 +00:00
|
|
|
if err != nil && err != amqp.ErrClosed {
|
|
|
|
log.Printf("E! Error closing AMQP connection: %s", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2015-09-15 18:16:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (q *AMQP) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (q *AMQP) Description() string {
|
|
|
|
return "Configuration for the AMQP server to send metrics to"
|
|
|
|
}
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
func (q *AMQP) Write(metrics []telegraf.Metric) error {
|
|
|
|
if len(metrics) == 0 {
|
2015-09-15 18:16:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
2017-04-27 18:10:30 +00:00
|
|
|
|
|
|
|
c := q.getClient()
|
|
|
|
if c == nil {
|
|
|
|
return fmt.Errorf("connection is not open")
|
|
|
|
}
|
|
|
|
|
2016-11-22 12:51:57 +00:00
|
|
|
outbuf := make(map[string][]byte)
|
2015-09-15 18:16:53 +00:00
|
|
|
|
2016-02-10 22:50:07 +00:00
|
|
|
for _, metric := range metrics {
|
|
|
|
var key string
|
2015-09-16 00:25:56 +00:00
|
|
|
if q.RoutingTag != "" {
|
2016-02-10 22:50:07 +00:00
|
|
|
if h, ok := metric.Tags()[q.RoutingTag]; ok {
|
2015-09-16 00:25:56 +00:00
|
|
|
key = h
|
|
|
|
}
|
2015-09-15 18:16:53 +00:00
|
|
|
}
|
|
|
|
|
2016-11-22 12:51:57 +00:00
|
|
|
buf, err := q.serializer.Serialize(metric)
|
2016-02-10 22:50:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-22 12:51:57 +00:00
|
|
|
outbuf[key] = append(outbuf[key], buf...)
|
2015-10-21 17:25:36 +00:00
|
|
|
}
|
2016-02-10 22:50:07 +00:00
|
|
|
|
2015-10-21 17:25:36 +00:00
|
|
|
for key, buf := range outbuf {
|
2017-04-27 18:10:30 +00:00
|
|
|
// Note that since the channel is not in confirm mode, the absence of
|
|
|
|
// an error does not indicate successful delivery.
|
|
|
|
err := c.channel.Publish(
|
2015-09-15 18:16:53 +00:00
|
|
|
q.Exchange, // exchange
|
|
|
|
key, // routing key
|
|
|
|
false, // mandatory
|
|
|
|
false, // immediate
|
|
|
|
amqp.Publishing{
|
2017-04-27 18:10:30 +00:00
|
|
|
Headers: c.headers,
|
2015-09-15 18:16:53 +00:00
|
|
|
ContentType: "text/plain",
|
2016-11-22 12:51:57 +00:00
|
|
|
Body: buf,
|
2015-09-15 18:16:53 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2017-03-03 18:24:50 +00:00
|
|
|
return fmt.Errorf("Failed to send AMQP message: %s", err)
|
2015-09-15 18:16:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-27 18:10:30 +00:00
|
|
|
func (q *AMQP) getClient() *client {
|
|
|
|
q.Lock()
|
|
|
|
defer q.Unlock()
|
|
|
|
return q.c
|
|
|
|
}
|
|
|
|
|
|
|
|
func (q *AMQP) setClient(c *client) {
|
|
|
|
q.Lock()
|
|
|
|
q.c = c
|
|
|
|
q.Unlock()
|
|
|
|
}
|
|
|
|
|
2015-09-15 18:16:53 +00:00
|
|
|
func init() {
|
2016-01-27 21:21:36 +00:00
|
|
|
outputs.Add("amqp", func() telegraf.Output {
|
2015-10-30 09:02:14 +00:00
|
|
|
return &AMQP{
|
2016-03-16 18:44:11 +00:00
|
|
|
AuthMethod: DefaultAuthMethod,
|
2015-10-30 09:02:14 +00:00
|
|
|
Database: DefaultDatabase,
|
|
|
|
RetentionPolicy: DefaultRetentionPolicy,
|
2017-04-27 18:10:30 +00:00
|
|
|
Timeout: internal.Duration{Duration: time.Second * 5},
|
2015-10-30 09:02:14 +00:00
|
|
|
}
|
2015-09-15 18:16:53 +00:00
|
|
|
})
|
|
|
|
}
|