2015-06-27 03:56:14 +00:00
|
|
|
package kafka_consumer
|
|
|
|
|
|
|
|
import (
|
2017-03-24 19:03:36 +00:00
|
|
|
"fmt"
|
2015-11-16 20:12:45 +00:00
|
|
|
"log"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
2015-06-27 03:56:14 +00:00
|
|
|
|
2016-01-27 21:21:36 +00:00
|
|
|
"github.com/influxdata/telegraf"
|
2018-05-04 23:33:23 +00:00
|
|
|
"github.com/influxdata/telegraf/internal/tls"
|
2016-01-20 18:57:35 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/inputs"
|
2016-02-06 00:36:35 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/parsers"
|
2015-11-16 20:12:45 +00:00
|
|
|
|
|
|
|
"github.com/Shopify/sarama"
|
2017-06-08 01:22:28 +00:00
|
|
|
cluster "github.com/bsm/sarama-cluster"
|
2015-06-27 03:56:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Kafka struct {
|
2017-06-08 01:22:28 +00:00
|
|
|
ConsumerGroup string
|
|
|
|
Topics []string
|
|
|
|
Brokers []string
|
|
|
|
MaxMessageLen int
|
|
|
|
|
|
|
|
Cluster *cluster.Consumer
|
|
|
|
|
2018-05-04 23:33:23 +00:00
|
|
|
tls.ClientConfig
|
2017-06-08 01:22:28 +00:00
|
|
|
|
|
|
|
// SASL Username
|
|
|
|
SASLUsername string `toml:"sasl_username"`
|
|
|
|
// SASL Password
|
|
|
|
SASLPassword string `toml:"sasl_password"`
|
2016-02-16 00:21:38 +00:00
|
|
|
|
|
|
|
// Legacy metric buffer support
|
|
|
|
MetricBuffer int
|
2016-02-09 22:03:46 +00:00
|
|
|
// TODO remove PointBuffer, legacy support
|
|
|
|
PointBuffer int
|
2015-11-16 20:12:45 +00:00
|
|
|
|
2016-02-16 00:21:38 +00:00
|
|
|
Offset string
|
2016-02-06 00:36:35 +00:00
|
|
|
parser parsers.Parser
|
|
|
|
|
2015-11-16 20:12:45 +00:00
|
|
|
sync.Mutex
|
|
|
|
|
|
|
|
// channel for all incoming kafka messages
|
|
|
|
in <-chan *sarama.ConsumerMessage
|
|
|
|
// channel for all kafka consumer errors
|
2017-01-11 16:24:09 +00:00
|
|
|
errs <-chan error
|
2016-02-16 00:21:38 +00:00
|
|
|
done chan struct{}
|
|
|
|
|
|
|
|
// keep the accumulator internally:
|
|
|
|
acc telegraf.Accumulator
|
2015-11-16 20:12:45 +00:00
|
|
|
|
|
|
|
// doNotCommitMsgs tells the parser not to call CommitUpTo on the consumer
|
|
|
|
// this is mostly for test purposes, but there may be a use-case for it later.
|
|
|
|
doNotCommitMsgs bool
|
2015-06-27 03:56:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var sampleConfig = `
|
2017-06-08 01:22:28 +00:00
|
|
|
## kafka servers
|
|
|
|
brokers = ["localhost:9092"]
|
2016-02-18 21:26:51 +00:00
|
|
|
## topic(s) to consume
|
2015-11-16 20:12:45 +00:00
|
|
|
topics = ["telegraf"]
|
2017-06-08 01:22:28 +00:00
|
|
|
|
2018-05-04 23:33:23 +00:00
|
|
|
## Optional TLS Config
|
|
|
|
# tls_ca = "/etc/telegraf/ca.pem"
|
|
|
|
# tls_cert = "/etc/telegraf/cert.pem"
|
|
|
|
# tls_key = "/etc/telegraf/key.pem"
|
|
|
|
## Use TLS but skip chain & host verification
|
2017-06-08 01:22:28 +00:00
|
|
|
# insecure_skip_verify = false
|
|
|
|
|
|
|
|
## Optional SASL Config
|
|
|
|
# sasl_username = "kafka"
|
|
|
|
# sasl_password = "secret"
|
|
|
|
|
2016-02-18 21:26:51 +00:00
|
|
|
## the name of the consumer group
|
2015-11-16 20:12:45 +00:00
|
|
|
consumer_group = "telegraf_metrics_consumers"
|
2016-02-18 21:26:51 +00:00
|
|
|
## Offset (must be either "oldest" or "newest")
|
2015-11-16 20:12:45 +00:00
|
|
|
offset = "oldest"
|
2016-02-06 00:36:35 +00:00
|
|
|
|
2016-03-31 23:50:24 +00:00
|
|
|
## Data format to consume.
|
2017-04-11 19:05:39 +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_INPUT.md
|
2016-02-06 00:36:35 +00:00
|
|
|
data_format = "influx"
|
2017-04-11 19:05:39 +00:00
|
|
|
|
|
|
|
## Maximum length of a message to consume, in bytes (default 0/unlimited);
|
|
|
|
## larger messages are dropped
|
|
|
|
max_message_len = 65536
|
2015-08-26 15:21:39 +00:00
|
|
|
`
|
2015-06-27 03:56:14 +00:00
|
|
|
|
|
|
|
func (k *Kafka) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Kafka) Description() string {
|
2016-02-06 00:36:35 +00:00
|
|
|
return "Read metrics from Kafka topic(s)"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Kafka) SetParser(parser parsers.Parser) {
|
|
|
|
k.parser = parser
|
2015-06-27 03:56:14 +00:00
|
|
|
}
|
|
|
|
|
2016-02-16 00:21:38 +00:00
|
|
|
func (k *Kafka) Start(acc telegraf.Accumulator) error {
|
2015-11-16 20:12:45 +00:00
|
|
|
k.Lock()
|
|
|
|
defer k.Unlock()
|
2017-06-08 01:22:28 +00:00
|
|
|
var clusterErr error
|
2015-06-27 03:56:14 +00:00
|
|
|
|
2016-02-16 00:21:38 +00:00
|
|
|
k.acc = acc
|
|
|
|
|
2017-06-08 01:22:28 +00:00
|
|
|
config := cluster.NewConfig()
|
|
|
|
config.Consumer.Return.Errors = true
|
|
|
|
|
2018-05-04 23:33:23 +00:00
|
|
|
tlsConfig, err := k.ClientConfig.TLSConfig()
|
2017-06-08 01:22:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if tlsConfig != nil {
|
|
|
|
log.Printf("D! TLS Enabled")
|
|
|
|
config.Net.TLS.Config = tlsConfig
|
|
|
|
config.Net.TLS.Enable = true
|
|
|
|
}
|
|
|
|
if k.SASLUsername != "" && k.SASLPassword != "" {
|
|
|
|
log.Printf("D! Using SASL auth with username '%s',",
|
|
|
|
k.SASLUsername)
|
|
|
|
config.Net.SASL.User = k.SASLUsername
|
|
|
|
config.Net.SASL.Password = k.SASLPassword
|
|
|
|
config.Net.SASL.Enable = true
|
|
|
|
}
|
|
|
|
|
2015-11-16 20:12:45 +00:00
|
|
|
switch strings.ToLower(k.Offset) {
|
|
|
|
case "oldest", "":
|
2017-06-08 01:22:28 +00:00
|
|
|
config.Consumer.Offsets.Initial = sarama.OffsetOldest
|
2015-11-16 20:12:45 +00:00
|
|
|
case "newest":
|
2017-06-08 01:22:28 +00:00
|
|
|
config.Consumer.Offsets.Initial = sarama.OffsetNewest
|
2015-11-16 20:12:45 +00:00
|
|
|
default:
|
2016-09-30 21:37:56 +00:00
|
|
|
log.Printf("I! WARNING: Kafka consumer invalid offset '%s', using 'oldest'\n",
|
2015-11-16 20:12:45 +00:00
|
|
|
k.Offset)
|
2017-06-08 01:22:28 +00:00
|
|
|
config.Consumer.Offsets.Initial = sarama.OffsetOldest
|
2015-11-16 20:12:45 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 01:22:28 +00:00
|
|
|
if k.Cluster == nil {
|
|
|
|
k.Cluster, clusterErr = cluster.NewConsumer(
|
|
|
|
k.Brokers,
|
2015-11-16 20:12:45 +00:00
|
|
|
k.ConsumerGroup,
|
|
|
|
k.Topics,
|
|
|
|
config,
|
2015-06-27 03:56:14 +00:00
|
|
|
)
|
2017-06-08 01:22:28 +00:00
|
|
|
|
|
|
|
if clusterErr != nil {
|
|
|
|
log.Printf("E! Error when creating Kafka Consumer, brokers: %v, topics: %v\n",
|
|
|
|
k.Brokers, k.Topics)
|
|
|
|
return clusterErr
|
2015-06-27 03:56:14 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 20:12:45 +00:00
|
|
|
// Setup message and error channels
|
2017-06-08 01:22:28 +00:00
|
|
|
k.in = k.Cluster.Messages()
|
|
|
|
k.errs = k.Cluster.Errors()
|
2015-06-27 03:56:14 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 20:12:45 +00:00
|
|
|
k.done = make(chan struct{})
|
|
|
|
// Start the kafka message reader
|
2016-02-06 00:36:35 +00:00
|
|
|
go k.receiver()
|
2017-06-08 01:22:28 +00:00
|
|
|
log.Printf("I! Started the kafka consumer service, brokers: %v, topics: %v\n",
|
|
|
|
k.Brokers, k.Topics)
|
2015-11-16 20:12:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-06-27 03:56:14 +00:00
|
|
|
|
2016-02-06 00:36:35 +00:00
|
|
|
// receiver() reads all incoming messages from the consumer, and parses them into
|
2015-11-16 20:12:45 +00:00
|
|
|
// influxdb metric points.
|
2016-02-06 00:36:35 +00:00
|
|
|
func (k *Kafka) receiver() {
|
2015-06-27 03:56:14 +00:00
|
|
|
for {
|
|
|
|
select {
|
2015-11-16 20:12:45 +00:00
|
|
|
case <-k.done:
|
|
|
|
return
|
|
|
|
case err := <-k.errs:
|
2016-09-14 07:52:58 +00:00
|
|
|
if err != nil {
|
2017-04-11 19:05:39 +00:00
|
|
|
k.acc.AddError(fmt.Errorf("Consumer Error: %s\n", err))
|
2016-09-14 07:52:58 +00:00
|
|
|
}
|
2015-11-16 20:12:45 +00:00
|
|
|
case msg := <-k.in:
|
2017-04-11 19:05:39 +00:00
|
|
|
if k.MaxMessageLen != 0 && len(msg.Value) > k.MaxMessageLen {
|
|
|
|
k.acc.AddError(fmt.Errorf("Message longer than max_message_len (%d > %d)",
|
|
|
|
len(msg.Value), k.MaxMessageLen))
|
|
|
|
} else {
|
|
|
|
metrics, err := k.parser.Parse(msg.Value)
|
|
|
|
if err != nil {
|
|
|
|
k.acc.AddError(fmt.Errorf("Message Parse Error\nmessage: %s\nerror: %s",
|
|
|
|
string(msg.Value), err.Error()))
|
|
|
|
}
|
|
|
|
for _, metric := range metrics {
|
|
|
|
k.acc.AddFields(metric.Name(), metric.Fields(), metric.Tags(), metric.Time())
|
|
|
|
}
|
2015-11-16 20:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !k.doNotCommitMsgs {
|
|
|
|
// TODO(cam) this locking can be removed if this PR gets merged:
|
|
|
|
// https://github.com/wvanbergen/kafka/pull/84
|
|
|
|
k.Lock()
|
2017-06-08 01:22:28 +00:00
|
|
|
k.Cluster.MarkOffset(msg, "")
|
2015-11-16 20:12:45 +00:00
|
|
|
k.Unlock()
|
2015-06-27 03:56:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 20:12:45 +00:00
|
|
|
func (k *Kafka) Stop() {
|
|
|
|
k.Lock()
|
|
|
|
defer k.Unlock()
|
|
|
|
close(k.done)
|
2017-06-08 01:22:28 +00:00
|
|
|
if err := k.Cluster.Close(); err != nil {
|
2017-04-11 19:05:39 +00:00
|
|
|
k.acc.AddError(fmt.Errorf("Error closing consumer: %s\n", err.Error()))
|
2015-11-16 20:12:45 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-27 03:56:14 +00:00
|
|
|
|
2016-01-27 21:21:36 +00:00
|
|
|
func (k *Kafka) Gather(acc telegraf.Accumulator) error {
|
2015-11-16 20:12:45 +00:00
|
|
|
return nil
|
2015-06-27 03:56:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-01-27 21:21:36 +00:00
|
|
|
inputs.Add("kafka_consumer", func() telegraf.Input {
|
2015-06-27 03:56:14 +00:00
|
|
|
return &Kafka{}
|
|
|
|
})
|
|
|
|
}
|