2016-06-09 19:31:05 +00:00
|
|
|
package nsq_consumer
|
|
|
|
|
|
|
|
import (
|
2018-11-05 21:34:28 +00:00
|
|
|
"context"
|
|
|
|
"log"
|
|
|
|
"sync"
|
2016-06-09 19:31:05 +00:00
|
|
|
|
|
|
|
"github.com/influxdata/telegraf"
|
|
|
|
"github.com/influxdata/telegraf/plugins/inputs"
|
|
|
|
"github.com/influxdata/telegraf/plugins/parsers"
|
2017-09-25 23:33:05 +00:00
|
|
|
nsq "github.com/nsqio/go-nsq"
|
2016-06-09 19:31:05 +00:00
|
|
|
)
|
|
|
|
|
2018-11-05 21:34:28 +00:00
|
|
|
const (
|
|
|
|
defaultMaxUndeliveredMessages = 1000
|
|
|
|
)
|
|
|
|
|
|
|
|
type empty struct{}
|
|
|
|
type semaphore chan empty
|
|
|
|
|
|
|
|
type logger struct{}
|
|
|
|
|
|
|
|
func (l *logger) Output(calldepth int, s string) error {
|
|
|
|
log.Println("D! [inputs.nsq_consumer] " + s)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-06-09 19:31:05 +00:00
|
|
|
//NSQConsumer represents the configuration of the plugin
|
|
|
|
type NSQConsumer struct {
|
2018-11-05 21:34:28 +00:00
|
|
|
Server string `toml:"server"`
|
|
|
|
Nsqd []string `toml:"nsqd"`
|
|
|
|
Nsqlookupd []string `toml:"nsqlookupd"`
|
|
|
|
Topic string `toml:"topic"`
|
|
|
|
Channel string `toml:"channel"`
|
|
|
|
MaxInFlight int `toml:"max_in_flight"`
|
|
|
|
|
|
|
|
MaxUndeliveredMessages int `toml:"max_undelivered_messages"`
|
|
|
|
|
|
|
|
parser parsers.Parser
|
|
|
|
consumer *nsq.Consumer
|
|
|
|
|
|
|
|
mu sync.Mutex
|
|
|
|
messages map[telegraf.TrackingID]*nsq.Message
|
|
|
|
wg sync.WaitGroup
|
|
|
|
cancel context.CancelFunc
|
2016-06-09 19:31:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var sampleConfig = `
|
2017-09-25 23:33:05 +00:00
|
|
|
## Server option still works but is deprecated, we just prepend it to the nsqd array.
|
|
|
|
# server = "localhost:4150"
|
|
|
|
## An array representing the NSQD TCP HTTP Endpoints
|
|
|
|
nsqd = ["localhost:4150"]
|
|
|
|
## An array representing the NSQLookupd HTTP Endpoints
|
|
|
|
nsqlookupd = ["localhost:4161"]
|
2016-06-09 19:31:05 +00:00
|
|
|
topic = "telegraf"
|
|
|
|
channel = "consumer"
|
|
|
|
max_in_flight = 100
|
|
|
|
|
2018-11-05 21:34:28 +00:00
|
|
|
## Maximum messages to read from the broker that have not been written by an
|
|
|
|
## output. For best throughput set based on the number of metrics within
|
|
|
|
## each message and the size of the output's metric_batch_size.
|
|
|
|
##
|
|
|
|
## For example, if each message from the queue contains 10 metrics and the
|
|
|
|
## output metric_batch_size is 1000, setting this to 100 will ensure that a
|
|
|
|
## full batch is collected and the write is triggered immediately without
|
|
|
|
## waiting until the next flush_interval.
|
|
|
|
# max_undelivered_messages = 1000
|
|
|
|
|
2016-06-09 19:31:05 +00:00
|
|
|
## Data format to consume.
|
2017-04-27 21:59:18 +00:00
|
|
|
## Each data format has its own unique set of configuration options, read
|
2016-06-09 19:31:05 +00:00
|
|
|
## more about them here:
|
|
|
|
## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md
|
|
|
|
data_format = "influx"
|
|
|
|
`
|
|
|
|
|
|
|
|
// SetParser takes the data_format from the config and finds the right parser for that format
|
|
|
|
func (n *NSQConsumer) SetParser(parser parsers.Parser) {
|
|
|
|
n.parser = parser
|
|
|
|
}
|
|
|
|
|
|
|
|
// SampleConfig returns config values for generating a sample configuration file
|
|
|
|
func (n *NSQConsumer) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
// Description prints description string
|
|
|
|
func (n *NSQConsumer) Description() string {
|
|
|
|
return "Read NSQ topic for metrics."
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start pulls data from nsq
|
2018-11-05 21:34:28 +00:00
|
|
|
func (n *NSQConsumer) Start(ac telegraf.Accumulator) error {
|
|
|
|
acc := ac.WithTracking(n.MaxUndeliveredMessages)
|
|
|
|
sem := make(semaphore, n.MaxUndeliveredMessages)
|
|
|
|
n.messages = make(map[telegraf.TrackingID]*nsq.Message, n.MaxUndeliveredMessages)
|
|
|
|
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
n.cancel = cancel
|
|
|
|
|
2016-06-09 19:31:05 +00:00
|
|
|
n.connect()
|
2018-11-05 21:34:28 +00:00
|
|
|
n.consumer.SetLogger(&logger{}, nsq.LogLevelInfo)
|
|
|
|
n.consumer.AddHandler(nsq.HandlerFunc(func(message *nsq.Message) error {
|
2016-06-09 19:31:05 +00:00
|
|
|
metrics, err := n.parser.Parse(message.Body)
|
|
|
|
if err != nil {
|
2018-11-05 21:34:28 +00:00
|
|
|
acc.AddError(err)
|
|
|
|
// Remove the message from the queue
|
|
|
|
message.Finish()
|
2016-06-09 19:31:05 +00:00
|
|
|
return nil
|
|
|
|
}
|
2018-11-05 21:34:28 +00:00
|
|
|
if len(metrics) == 0 {
|
|
|
|
message.Finish()
|
|
|
|
return nil
|
2016-06-09 19:31:05 +00:00
|
|
|
}
|
2018-11-05 21:34:28 +00:00
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
case sem <- empty{}:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
n.mu.Lock()
|
|
|
|
id := acc.AddTrackingMetricGroup(metrics)
|
|
|
|
n.messages[id] = message
|
|
|
|
n.mu.Unlock()
|
|
|
|
message.DisableAutoResponse()
|
2016-06-09 19:31:05 +00:00
|
|
|
return nil
|
2018-11-05 21:34:28 +00:00
|
|
|
}))
|
2017-09-25 23:33:05 +00:00
|
|
|
|
|
|
|
if len(n.Nsqlookupd) > 0 {
|
|
|
|
n.consumer.ConnectToNSQLookupds(n.Nsqlookupd)
|
|
|
|
}
|
|
|
|
n.consumer.ConnectToNSQDs(append(n.Nsqd, n.Server))
|
2018-11-05 21:34:28 +00:00
|
|
|
|
|
|
|
n.wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer n.wg.Done()
|
|
|
|
n.onDelivery(ctx, acc, sem)
|
|
|
|
}()
|
2016-06-09 19:31:05 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-11-05 21:34:28 +00:00
|
|
|
func (n *NSQConsumer) onDelivery(ctx context.Context, acc telegraf.TrackingAccumulator, sem semaphore) {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
case info := <-acc.Delivered():
|
|
|
|
n.mu.Lock()
|
|
|
|
msg, ok := n.messages[info.ID()]
|
|
|
|
if !ok {
|
|
|
|
n.mu.Unlock()
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
<-sem
|
|
|
|
delete(n.messages, info.ID())
|
|
|
|
n.mu.Unlock()
|
|
|
|
|
|
|
|
if info.Delivered() {
|
|
|
|
msg.Finish()
|
|
|
|
} else {
|
|
|
|
msg.Requeue(-1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-09 19:31:05 +00:00
|
|
|
// Stop processing messages
|
|
|
|
func (n *NSQConsumer) Stop() {
|
2018-11-05 21:34:28 +00:00
|
|
|
n.cancel()
|
|
|
|
n.wg.Wait()
|
2016-06-09 19:31:05 +00:00
|
|
|
n.consumer.Stop()
|
2018-11-05 21:34:28 +00:00
|
|
|
<-n.consumer.StopChan
|
2016-06-09 19:31:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Gather is a noop
|
|
|
|
func (n *NSQConsumer) Gather(acc telegraf.Accumulator) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *NSQConsumer) connect() error {
|
|
|
|
if n.consumer == nil {
|
|
|
|
config := nsq.NewConfig()
|
|
|
|
config.MaxInFlight = n.MaxInFlight
|
|
|
|
consumer, err := nsq.NewConsumer(n.Topic, n.Channel, config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
n.consumer = consumer
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2018-11-05 21:34:28 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
inputs.Add("nsq_consumer", func() telegraf.Input {
|
|
|
|
return &NSQConsumer{
|
|
|
|
MaxUndeliveredMessages: defaultMaxUndeliveredMessages,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|