2021-10-12 13:44:38 +02:00
|
|
|
package sinks
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2022-01-25 15:37:43 +01:00
|
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
|
|
|
influx "github.com/influxdata/line-protocol"
|
2021-10-12 13:44:38 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type HttpSink struct {
|
2022-01-25 15:37:43 +01:00
|
|
|
sink
|
2021-10-12 13:44:38 +02:00
|
|
|
client *http.Client
|
|
|
|
url, jwt string
|
2022-01-25 15:37:43 +01:00
|
|
|
encoder *influx.Encoder
|
2021-10-12 13:44:38 +02:00
|
|
|
buffer *bytes.Buffer
|
|
|
|
}
|
|
|
|
|
2022-01-25 15:37:43 +01:00
|
|
|
func (s *HttpSink) Init(config sinkConfig) error {
|
|
|
|
s.name = "HttpSink"
|
|
|
|
if len(config.Host) == 0 || len(config.Port) == 0 || len(config.Database) == 0 {
|
2021-10-12 13:44:38 +02:00
|
|
|
return errors.New("`host`, `port` and `database` config options required for TCP sink")
|
|
|
|
}
|
|
|
|
|
|
|
|
s.client = &http.Client{}
|
2022-02-04 12:39:25 +01:00
|
|
|
proto := "http"
|
|
|
|
if config.SSL {
|
|
|
|
proto = "https"
|
|
|
|
}
|
|
|
|
s.url = fmt.Sprintf("%s://%s:%s/%s", proto, config.Host, config.Port, config.Database)
|
2021-10-12 13:44:38 +02:00
|
|
|
s.port = config.Port
|
|
|
|
s.jwt = config.Password
|
|
|
|
s.buffer = &bytes.Buffer{}
|
2022-01-25 15:37:43 +01:00
|
|
|
s.encoder = influx.NewEncoder(s.buffer)
|
2021-10-12 13:44:38 +02:00
|
|
|
s.encoder.SetPrecision(time.Second)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-01-25 15:37:43 +01:00
|
|
|
func (s *HttpSink) Write(point lp.CCMetric) error {
|
2021-10-12 13:44:38 +02:00
|
|
|
_, err := s.encoder.Encode(point)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HttpSink) Flush() error {
|
|
|
|
req, err := http.NewRequest(http.MethodPost, s.url, s.buffer)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(s.jwt) != 0 {
|
|
|
|
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", s.jwt))
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := s.client.Do(req)
|
|
|
|
s.buffer.Reset()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if res.StatusCode != 200 {
|
|
|
|
return errors.New(res.Status)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HttpSink) Close() {
|
|
|
|
s.client.CloseIdleConnections()
|
|
|
|
}
|