2021-03-26 16:48:09 +01:00
|
|
|
package sinks
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-06-30 16:56:47 +02:00
|
|
|
"crypto/tls"
|
2022-02-04 18:12:24 +01:00
|
|
|
"encoding/json"
|
2021-05-18 15:16:10 +02:00
|
|
|
"errors"
|
2021-03-26 16:48:09 +01:00
|
|
|
"fmt"
|
2022-04-01 18:37:45 +02:00
|
|
|
"sync"
|
2022-03-11 13:43:03 +01:00
|
|
|
"time"
|
2022-02-01 14:54:34 +01:00
|
|
|
|
2022-02-07 18:00:02 +01:00
|
|
|
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
2022-01-25 15:37:43 +01:00
|
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
2021-03-26 16:48:09 +01:00
|
|
|
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
|
|
|
|
influxdb2Api "github.com/influxdata/influxdb-client-go/v2/api"
|
2022-04-01 18:37:45 +02:00
|
|
|
"github.com/influxdata/influxdb-client-go/v2/api/write"
|
2021-03-26 16:48:09 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type InfluxSink struct {
|
2022-01-25 15:37:43 +01:00
|
|
|
sink
|
2022-05-06 11:44:57 +02:00
|
|
|
client influxdb2.Client
|
|
|
|
writeApi influxdb2Api.WriteAPIBlocking
|
|
|
|
config struct {
|
|
|
|
defaultSinkConfig
|
|
|
|
Host string `json:"host,omitempty"`
|
|
|
|
Port string `json:"port,omitempty"`
|
|
|
|
Database string `json:"database,omitempty"`
|
|
|
|
User string `json:"user,omitempty"`
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
Organization string `json:"organization,omitempty"`
|
|
|
|
SSL bool `json:"ssl,omitempty"`
|
|
|
|
// Maximum number of points sent to server in single request. Default 100
|
|
|
|
BatchSize int `json:"batch_size,omitempty"`
|
|
|
|
// Interval, in which is buffer flushed if it has not been already written (by reaching batch size). Default 1s
|
|
|
|
FlushInterval string `json:"flush_delay,omitempty"`
|
|
|
|
}
|
|
|
|
batch []*write.Point
|
|
|
|
flushTimer *time.Timer
|
|
|
|
flushDelay time.Duration
|
|
|
|
lock sync.Mutex // Flush() runs in another goroutine, so this lock has to protect the buffer
|
2021-03-26 16:48:09 +01:00
|
|
|
}
|
|
|
|
|
2022-05-04 11:28:06 +02:00
|
|
|
// connect connects to the InfluxDB server
|
2021-05-18 15:16:10 +02:00
|
|
|
func (s *InfluxSink) connect() error {
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// URI options:
|
|
|
|
// * http://host:port
|
|
|
|
// * https://host:port
|
2021-06-30 16:56:47 +02:00
|
|
|
var uri string
|
2022-02-04 18:12:24 +01:00
|
|
|
if s.config.SSL {
|
|
|
|
uri = fmt.Sprintf("https://%s:%s", s.config.Host, s.config.Port)
|
2021-06-30 16:56:47 +02:00
|
|
|
} else {
|
2022-02-04 18:12:24 +01:00
|
|
|
uri = fmt.Sprintf("http://%s:%s", s.config.Host, s.config.Port)
|
2021-06-30 16:56:47 +02:00
|
|
|
}
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Authentication options:
|
|
|
|
// * token
|
|
|
|
// * username:password
|
|
|
|
var auth string
|
2022-02-04 18:12:24 +01:00
|
|
|
if len(s.config.User) == 0 {
|
|
|
|
auth = s.config.Password
|
2021-05-18 15:16:10 +02:00
|
|
|
} else {
|
2022-02-04 18:12:24 +01:00
|
|
|
auth = fmt.Sprintf("%s:%s", s.config.User, s.config.Password)
|
2021-05-18 15:16:10 +02:00
|
|
|
}
|
2022-02-07 18:00:02 +01:00
|
|
|
cclog.ComponentDebug(s.name, "Using URI", uri, "Org", s.config.Organization, "Bucket", s.config.Database)
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Set influxDB client options
|
2022-02-09 11:08:50 +01:00
|
|
|
clientOptions := influxdb2.DefaultOptions()
|
2022-04-01 18:37:45 +02:00
|
|
|
|
2022-05-04 11:28:06 +02:00
|
|
|
// Do not check InfluxDB certificate
|
2022-02-09 11:08:50 +01:00
|
|
|
clientOptions.SetTLSConfig(
|
|
|
|
&tls.Config{
|
|
|
|
InsecureSkipVerify: true,
|
|
|
|
},
|
|
|
|
)
|
2022-03-11 13:43:03 +01:00
|
|
|
|
2022-04-01 18:37:45 +02:00
|
|
|
clientOptions.SetPrecision(time.Second)
|
2022-03-11 13:43:03 +01:00
|
|
|
|
2022-05-04 11:28:06 +02:00
|
|
|
// Create new writeAPI
|
2022-02-09 11:08:50 +01:00
|
|
|
s.client = influxdb2.NewClientWithOptions(uri, auth, clientOptions)
|
2022-02-04 18:12:24 +01:00
|
|
|
s.writeApi = s.client.WriteAPIBlocking(s.config.Organization, s.config.Database)
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Check InfluxDB server accessibility
|
2022-02-25 13:51:52 +01:00
|
|
|
ok, err := s.client.Ping(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("connection to %s not healthy", uri)
|
|
|
|
}
|
2021-03-26 16:48:09 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-02-08 09:31:08 +01:00
|
|
|
func (s *InfluxSink) Write(m lp.CCMetric) error {
|
2022-05-04 11:28:06 +02:00
|
|
|
|
2022-04-01 18:37:45 +02:00
|
|
|
if len(s.batch) == 0 && s.flushDelay != 0 {
|
|
|
|
// This is the first write since the last flush, start the flushTimer!
|
|
|
|
if s.flushTimer != nil && s.flushTimer.Stop() {
|
|
|
|
cclog.ComponentDebug(s.name, "unexpected: the flushTimer was already running?")
|
|
|
|
}
|
|
|
|
|
2022-05-04 11:28:06 +02:00
|
|
|
// Run a batched flush for all lines that have arrived in the last flush delay interval
|
2022-05-06 11:44:57 +02:00
|
|
|
s.flushTimer = time.AfterFunc(
|
|
|
|
s.flushDelay,
|
|
|
|
func() {
|
|
|
|
if err := s.Flush(); err != nil {
|
|
|
|
cclog.ComponentError(s.name, "flush failed:", err.Error())
|
|
|
|
}
|
|
|
|
})
|
2022-04-01 18:37:45 +02:00
|
|
|
}
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Append metric to batch slice
|
2022-04-01 18:37:45 +02:00
|
|
|
p := m.ToPoint(s.meta_as_tags)
|
|
|
|
s.lock.Lock()
|
|
|
|
s.batch = append(s.batch, p)
|
|
|
|
s.lock.Unlock()
|
|
|
|
|
|
|
|
// Flush synchronously if "flush_delay" is zero
|
|
|
|
if s.flushDelay == 0 {
|
|
|
|
return s.Flush()
|
|
|
|
}
|
|
|
|
|
2022-05-04 11:28:06 +02:00
|
|
|
// Flush if batch size is reached
|
|
|
|
if len(s.batch) == s.config.BatchSize {
|
|
|
|
return s.Flush()
|
|
|
|
}
|
|
|
|
|
2022-04-01 18:37:45 +02:00
|
|
|
return nil
|
2021-03-26 16:48:09 +01:00
|
|
|
}
|
|
|
|
|
2022-05-04 11:28:06 +02:00
|
|
|
// Flush sends all metrics buffered in batch slice to InfluxDB server
|
2021-10-12 13:43:58 +02:00
|
|
|
func (s *InfluxSink) Flush() error {
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Lock access to batch slice
|
2022-04-01 18:37:45 +02:00
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Nothing to do, batch slice is empty
|
2022-04-01 18:37:45 +02:00
|
|
|
if len(s.batch) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Send metrics from batch slice
|
2022-04-01 18:37:45 +02:00
|
|
|
err := s.writeApi.WritePoint(context.Background(), s.batch...)
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Clear batch slice
|
2022-06-20 18:06:27 +02:00
|
|
|
// (when sending the metrics failed, metrics get dropped and are lost)
|
2022-05-04 11:28:06 +02:00
|
|
|
for i := range s.batch {
|
|
|
|
s.batch[i] = nil
|
|
|
|
}
|
2022-04-01 18:37:45 +02:00
|
|
|
s.batch = s.batch[:0]
|
2022-05-04 11:28:06 +02:00
|
|
|
|
2022-06-20 18:06:27 +02:00
|
|
|
// Report errors for sending metrics
|
|
|
|
if err != nil {
|
|
|
|
cclog.ComponentError(s.name, "flush failed:", err.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-10-12 13:43:58 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-26 16:48:09 +01:00
|
|
|
func (s *InfluxSink) Close() {
|
2022-02-07 18:00:02 +01:00
|
|
|
cclog.ComponentDebug(s.name, "Closing InfluxDB connection")
|
2022-04-01 18:37:45 +02:00
|
|
|
s.flushTimer.Stop()
|
|
|
|
s.Flush()
|
2021-03-26 16:48:09 +01:00
|
|
|
s.client.Close()
|
|
|
|
}
|
2022-02-22 16:15:25 +01:00
|
|
|
|
2022-05-04 11:28:06 +02:00
|
|
|
// NewInfluxSink create a new InfluxDB sink
|
2022-02-22 16:15:25 +01:00
|
|
|
func NewInfluxSink(name string, config json.RawMessage) (Sink, error) {
|
|
|
|
s := new(InfluxSink)
|
2022-02-23 14:56:29 +01:00
|
|
|
s.name = fmt.Sprintf("InfluxSink(%s)", name)
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Set config default values
|
2022-04-01 18:37:45 +02:00
|
|
|
s.config.BatchSize = 100
|
2022-05-06 11:44:57 +02:00
|
|
|
s.config.FlushInterval = "1s"
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// Read config
|
2022-02-23 14:56:29 +01:00
|
|
|
if len(config) > 0 {
|
|
|
|
err := json.Unmarshal(config, &s.config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2022-03-11 13:43:03 +01:00
|
|
|
|
2022-05-04 11:28:06 +02:00
|
|
|
if len(s.config.Host) == 0 {
|
|
|
|
return nil, errors.New("Missing host configuration required by InfluxSink")
|
2022-02-23 14:56:29 +01:00
|
|
|
}
|
2022-05-04 11:28:06 +02:00
|
|
|
if len(s.config.Port) == 0 {
|
|
|
|
return nil, errors.New("Missing port configuration required by InfluxSink")
|
|
|
|
}
|
|
|
|
if len(s.config.Database) == 0 {
|
|
|
|
return nil, errors.New("Missing database configuration required by InfluxSink")
|
|
|
|
}
|
|
|
|
if len(s.config.Organization) == 0 {
|
|
|
|
return nil, errors.New("Missing organization configuration required by InfluxSink")
|
|
|
|
}
|
|
|
|
if len(s.config.Password) == 0 {
|
|
|
|
return nil, errors.New("Missing password configuration required by InfluxSink")
|
|
|
|
}
|
|
|
|
|
2022-03-15 16:16:26 +01:00
|
|
|
// Create lookup map to use meta infos as tags in the output metric
|
|
|
|
s.meta_as_tags = make(map[string]bool)
|
|
|
|
for _, k := range s.config.MetaAsTags {
|
|
|
|
s.meta_as_tags[k] = true
|
|
|
|
}
|
2022-02-23 14:56:29 +01:00
|
|
|
|
2022-05-04 11:28:06 +02:00
|
|
|
// Configure flush delay duration
|
2022-05-06 11:44:57 +02:00
|
|
|
if len(s.config.FlushInterval) > 0 {
|
|
|
|
t, err := time.ParseDuration(s.config.FlushInterval)
|
2022-03-11 13:43:03 +01:00
|
|
|
if err == nil {
|
2022-04-01 18:37:45 +02:00
|
|
|
s.flushDelay = t
|
2022-03-11 13:43:03 +01:00
|
|
|
}
|
|
|
|
}
|
2022-05-04 11:28:06 +02:00
|
|
|
|
|
|
|
// allocate batch slice
|
2022-04-01 18:37:45 +02:00
|
|
|
s.batch = make([]*write.Point, 0, s.config.BatchSize)
|
2022-03-11 13:43:03 +01:00
|
|
|
|
2022-02-23 14:56:29 +01:00
|
|
|
// Connect to InfluxDB server
|
|
|
|
if err := s.connect(); err != nil {
|
2022-02-25 13:51:52 +01:00
|
|
|
return nil, fmt.Errorf("unable to connect: %v", err)
|
2022-02-23 14:56:29 +01:00
|
|
|
}
|
2022-02-22 16:15:25 +01:00
|
|
|
return s, nil
|
|
|
|
}
|