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-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-02-04 18:12:24 +01:00
|
|
|
type InfluxSinkConfig 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"`
|
|
|
|
RetentionPol string `json:"retention_policy,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-03-26 16:48:09 +01:00
|
|
|
type InfluxSink struct {
|
2022-01-25 15:37:43 +01:00
|
|
|
sink
|
2022-02-04 18:12:24 +01:00
|
|
|
client influxdb2.Client
|
|
|
|
writeApi influxdb2Api.WriteAPIBlocking
|
|
|
|
config InfluxSinkConfig
|
2021-03-26 16:48:09 +01:00
|
|
|
}
|
|
|
|
|
2021-05-18 15:16:10 +02:00
|
|
|
func (s *InfluxSink) connect() error {
|
|
|
|
var auth string
|
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-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-02-09 11:08:50 +01:00
|
|
|
clientOptions := influxdb2.DefaultOptions()
|
|
|
|
clientOptions.SetTLSConfig(
|
|
|
|
&tls.Config{
|
|
|
|
InsecureSkipVerify: true,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
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-02-25 14:49:49 +01:00
|
|
|
ok, err := s.client.Ping(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2022-02-04 18:12:24 +01:00
|
|
|
}
|
2022-02-25 14:49:49 +01:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("connection to %s not healthy", uri)
|
2021-05-18 15:16:10 +02:00
|
|
|
}
|
2022-02-25 14:49:49 +01:00
|
|
|
return nil
|
2021-05-18 15:16:10 +02:00
|
|
|
}
|
|
|
|
|
2022-02-08 09:31:08 +01:00
|
|
|
func (s *InfluxSink) Write(m lp.CCMetric) error {
|
|
|
|
err :=
|
|
|
|
s.writeApi.WritePoint(
|
|
|
|
context.Background(),
|
|
|
|
m.ToPoint(s.config.MetaAsTags),
|
|
|
|
)
|
2021-03-26 16:48:09 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-10-12 13:43:58 +02:00
|
|
|
func (s *InfluxSink) Flush() error {
|
|
|
|
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")
|
2021-03-26 16:48:09 +01:00
|
|
|
s.client.Close()
|
|
|
|
}
|
2022-02-25 14:49:49 +01:00
|
|
|
|
|
|
|
func NewInfluxSink(name string, config json.RawMessage) (Sink, error) {
|
|
|
|
s := new(InfluxSink)
|
|
|
|
s.name = fmt.Sprintf("InfluxSink(%s)", name)
|
|
|
|
if len(config) > 0 {
|
|
|
|
err := json.Unmarshal(config, &s.config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(s.config.Host) == 0 ||
|
|
|
|
len(s.config.Port) == 0 ||
|
|
|
|
len(s.config.Database) == 0 ||
|
|
|
|
len(s.config.Organization) == 0 ||
|
|
|
|
len(s.config.Password) == 0 {
|
|
|
|
return nil, errors.New("not all configuration variables set required by InfluxSink")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect to InfluxDB server
|
|
|
|
if err := s.connect(); err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to connect: %v", err)
|
|
|
|
}
|
|
|
|
return s, nil
|
|
|
|
}
|