mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
fdb58b0be2
* Use sink-specific configurations to have more flexibility. Adjust sample sink configuration files * Add documentation * Add links to individual sink readmes * Fix link in README * HTTPS for HttpSink * If no CPU die id available, use the socket id instead
108 lines
2.5 KiB
Go
108 lines
2.5 KiB
Go
package sinks
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
|
influx "github.com/influxdata/line-protocol"
|
|
nats "github.com/nats-io/nats.go"
|
|
)
|
|
|
|
type NatsSinkConfig 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"`
|
|
}
|
|
|
|
type NatsSink struct {
|
|
sink
|
|
client *nats.Conn
|
|
encoder *influx.Encoder
|
|
buffer *bytes.Buffer
|
|
config NatsSinkConfig
|
|
}
|
|
|
|
func (s *NatsSink) connect() error {
|
|
var err error
|
|
var uinfo nats.Option = nil
|
|
var nc *nats.Conn
|
|
if len(s.config.User) > 0 && len(s.config.Password) > 0 {
|
|
uinfo = nats.UserInfo(s.config.User, s.config.Password)
|
|
}
|
|
uri := fmt.Sprintf("nats://%s:%s", s.config.Host, s.config.Port)
|
|
cclog.ComponentDebug(s.name, "Connect to", uri)
|
|
s.client = nil
|
|
if uinfo != nil {
|
|
nc, err = nats.Connect(uri, uinfo)
|
|
} else {
|
|
nc, err = nats.Connect(uri)
|
|
}
|
|
if err != nil {
|
|
cclog.ComponentError(s.name, "Connect to", uri, "failed:", err.Error())
|
|
return err
|
|
}
|
|
s.client = nc
|
|
return nil
|
|
}
|
|
|
|
func (s *NatsSink) Init(config json.RawMessage) error {
|
|
s.name = "NatsSink"
|
|
if len(config) > 0 {
|
|
err := json.Unmarshal(config, &s.config)
|
|
if err != nil {
|
|
cclog.ComponentError(s.name, "Error reading config for", s.name, ":", err.Error())
|
|
return err
|
|
}
|
|
}
|
|
if len(s.config.Host) == 0 ||
|
|
len(s.config.Port) == 0 ||
|
|
len(s.config.Database) == 0 {
|
|
return errors.New("not all configuration variables set required by NatsSink")
|
|
}
|
|
// Setup Influx line protocol
|
|
s.buffer = &bytes.Buffer{}
|
|
s.buffer.Grow(1025)
|
|
s.encoder = influx.NewEncoder(s.buffer)
|
|
s.encoder.SetPrecision(time.Second)
|
|
s.encoder.SetMaxLineBytes(1024)
|
|
// Setup infos for connection
|
|
return s.connect()
|
|
}
|
|
|
|
func (s *NatsSink) Write(point lp.CCMetric) error {
|
|
if s.client != nil {
|
|
_, err := s.encoder.Encode(point)
|
|
if err != nil {
|
|
cclog.ComponentError(s.name, "Write:", err.Error())
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *NatsSink) Flush() error {
|
|
if s.client != nil {
|
|
if err := s.client.Publish(s.config.Database, s.buffer.Bytes()); err != nil {
|
|
cclog.ComponentError(s.name, "Flush:", err.Error())
|
|
return err
|
|
}
|
|
s.buffer.Reset()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *NatsSink) Close() {
|
|
if s.client != nil {
|
|
cclog.ComponentDebug(s.name, "Close")
|
|
s.client.Close()
|
|
}
|
|
}
|