telegraf/plugins/outputs/mqtt/mqtt.go

207 lines
4.1 KiB
Go
Raw Normal View History

//go:generate ../../../tools/readme_config_includer/generator
2015-10-04 21:52:29 +08:00
package mqtt
import (
_ "embed"
2015-10-04 21:52:29 +08:00
"fmt"
"strings"
"sync"
"time"
2015-10-04 21:52:29 +08:00
2019-02-12 09:25:25 +08:00
paho "github.com/eclipse/paho.mqtt.golang"
"github.com/influxdata/telegraf"
"github.com/influxdata/telegraf/config"
2016-01-21 02:57:35 +08:00
"github.com/influxdata/telegraf/internal"
"github.com/influxdata/telegraf/plugins/common/tls"
2016-01-21 02:57:35 +08:00
"github.com/influxdata/telegraf/plugins/outputs"
"github.com/influxdata/telegraf/plugins/serializers"
2015-10-04 21:52:29 +08:00
)
// DO NOT REMOVE THE NEXT TWO LINES! This is required to embedd the sampleConfig data.
//go:embed sample.conf
var sampleConfig string
const (
defaultKeepAlive = 0
)
2015-10-04 21:52:29 +08:00
type MQTT struct {
Servers []string `toml:"servers"`
Username string
Password string
Database string
Timeout config.Duration
2015-10-04 21:52:29 +08:00
TopicPrefix string
QoS int `toml:"qos"`
ClientID string `toml:"client_id"`
2018-05-05 07:33:23 +08:00
tls.ClientConfig
BatchMessage bool `toml:"batch"`
Retain bool `toml:"retain"`
KeepAlive int64 `toml:"keep_alive"`
Log telegraf.Logger `toml:"-"`
client paho.Client
opts *paho.ClientOptions
serializer serializers.Serializer
2015-10-04 21:52:29 +08:00
sync.Mutex
}
func (*MQTT) SampleConfig() string {
return sampleConfig
}
2015-10-04 21:52:29 +08:00
func (m *MQTT) Connect() error {
var err error
m.Lock()
defer m.Unlock()
2016-02-10 06:03:46 +08:00
if m.QoS > 2 || m.QoS < 0 {
return fmt.Errorf("MQTT Output, invalid QoS value: %d", m.QoS)
}
2015-10-04 21:52:29 +08:00
m.opts, err = m.createOpts()
2015-10-04 21:52:29 +08:00
if err != nil {
return err
}
m.client = paho.NewClient(m.opts)
if token := m.client.Connect(); token.Wait() && token.Error() != nil {
2015-10-04 21:52:29 +08:00
return token.Error()
}
return nil
}
func (m *MQTT) SetSerializer(serializer serializers.Serializer) {
m.serializer = serializer
}
2015-10-04 21:52:29 +08:00
func (m *MQTT) Close() error {
if m.client.IsConnected() {
m.client.Disconnect(20)
2015-10-04 21:52:29 +08:00
}
return nil
}
func (m *MQTT) Write(metrics []telegraf.Metric) error {
2015-10-04 21:52:29 +08:00
m.Lock()
defer m.Unlock()
if len(metrics) == 0 {
2015-10-04 21:52:29 +08:00
return nil
}
hostname, ok := metrics[0].Tags()["host"]
if !ok {
hostname = ""
}
2015-10-04 21:52:29 +08:00
2018-05-19 09:55:02 +08:00
metricsmap := make(map[string][]telegraf.Metric)
for _, metric := range metrics {
2015-10-04 21:52:29 +08:00
var t []string
if m.TopicPrefix != "" {
t = append(t, m.TopicPrefix)
}
if hostname != "" {
t = append(t, hostname)
}
t = append(t, metric.Name())
2015-10-04 21:52:29 +08:00
topic := strings.Join(t, "/")
2018-05-19 09:55:02 +08:00
if m.BatchMessage {
metricsmap[topic] = append(metricsmap[topic], metric)
} else {
buf, err := m.serializer.Serialize(metric)
if err != nil {
m.Log.Debugf("Could not serialize metric: %v", err)
continue
2018-05-19 09:55:02 +08:00
}
err = m.publish(topic, buf)
if err != nil {
return fmt.Errorf("could not write to MQTT server, %s", err)
2018-05-19 09:55:02 +08:00
}
}
2018-05-19 09:55:02 +08:00
}
for key := range metricsmap {
buf, err := m.serializer.SerializeBatch(metricsmap[key])
if err != nil {
2018-05-19 09:55:02 +08:00
return err
}
publisherr := m.publish(key, buf)
if publisherr != nil {
return fmt.Errorf("could not write to MQTT server, %s", publisherr)
2015-10-04 21:52:29 +08:00
}
}
return nil
}
func (m *MQTT) publish(topic string, body []byte) error {
token := m.client.Publish(topic, byte(m.QoS), m.Retain, body)
token.WaitTimeout(time.Duration(m.Timeout))
2015-10-04 21:52:29 +08:00
if token.Error() != nil {
return token.Error()
}
return nil
}
func (m *MQTT) createOpts() (*paho.ClientOptions, error) {
2015-10-04 21:52:29 +08:00
opts := paho.NewClientOptions()
opts.KeepAlive = m.KeepAlive
2015-10-04 21:52:29 +08:00
if m.Timeout < config.Duration(time.Second) {
m.Timeout = config.Duration(5 * time.Second)
}
opts.WriteTimeout = time.Duration(m.Timeout)
if m.ClientID != "" {
opts.SetClientID(m.ClientID)
} else {
opts.SetClientID("Telegraf-Output-" + internal.RandomString(5))
}
2018-05-05 07:33:23 +08:00
tlsCfg, err := m.ClientConfig.TLSConfig()
if err != nil {
return nil, err
}
2015-10-04 21:52:29 +08:00
scheme := "tcp"
if tlsCfg != nil {
2015-10-04 21:52:29 +08:00
scheme = "ssl"
opts.SetTLSConfig(tlsCfg)
2015-10-04 21:52:29 +08:00
}
user := m.Username
if user != "" {
2015-10-04 21:52:29 +08:00
opts.SetUsername(user)
}
password := m.Password
if password != "" {
opts.SetPassword(password)
}
if len(m.Servers) == 0 {
2020-05-16 06:43:32 +08:00
return opts, fmt.Errorf("could not get host informations")
2015-10-04 21:52:29 +08:00
}
for _, host := range m.Servers {
server := fmt.Sprintf("%s://%s", scheme, host)
opts.AddBroker(server)
}
opts.SetAutoReconnect(true)
return opts, nil
}
func init() {
outputs.Add("mqtt", func() telegraf.Output {
return &MQTT{
KeepAlive: defaultKeepAlive,
}
2015-10-04 21:52:29 +08:00
})
}