cc-metric-store/lineprotocol.go

235 lines
4.9 KiB
Go
Raw Normal View History

package main
import (
2021-09-08 09:08:51 +02:00
"context"
2022-01-20 10:14:28 +01:00
"fmt"
"log"
"math"
"strconv"
"sync"
2022-01-20 10:14:28 +01:00
"time"
"github.com/influxdata/line-protocol/v2/lineprotocol"
"github.com/nats-io/nats.go"
)
// Go's JSON encoder for floats does not support NaN (https://github.com/golang/go/issues/3480).
// This program uses NaN as a signal for missing data.
// For the HTTP JSON API to be able to handle NaN values,
// we have to use our own type which implements encoding/json.Marshaler itself.
type Float float64
var NaN Float = Float(math.NaN())
func (f Float) IsNaN() bool {
return math.IsNaN(float64(f))
}
func (f Float) MarshalJSON() ([]byte, error) {
if math.IsNaN(float64(f)) {
return []byte("null"), nil
}
2021-09-13 12:26:55 +02:00
return []byte(strconv.FormatFloat(float64(f), 'f', 2, 64)), nil
}
func (f *Float) UnmarshalJSON(input []byte) error {
s := string(input)
if s == "null" {
*f = NaN
return nil
}
val, err := strconv.ParseFloat(s, 64)
if err != nil {
return err
}
*f = Float(val)
return nil
}
type Metric struct {
Name string
Value Float
}
// Connect to a nats server and subscribe to "updates". This is a blocking
// function. handleLine will be called for each line recieved via nats.
// Send `true` through the done channel for gracefull termination.
2021-10-11 16:28:05 +02:00
func ReceiveNats(address string, handleLine func(dec *lineprotocol.Decoder) error, workers int, ctx context.Context) error {
nc, err := nats.Connect(address)
if err != nil {
return err
}
defer nc.Close()
var wg sync.WaitGroup
var sub *nats.Subscription
msgs := make(chan *nats.Msg, workers*2)
2021-09-08 09:08:51 +02:00
if workers > 1 {
wg.Add(workers)
for i := 0; i < workers; i++ {
go func() {
2021-09-13 12:26:55 +02:00
for m := range msgs {
dec := lineprotocol.NewDecoderWithBytes(m.Data)
2021-10-11 16:28:05 +02:00
if err := handleLine(dec); err != nil {
log.Printf("error: %s\n", err.Error())
}
}
2021-09-08 09:08:51 +02:00
wg.Done()
}()
}
sub, err = nc.Subscribe("updates", func(m *nats.Msg) {
msgs <- m
})
} else {
sub, err = nc.Subscribe("updates", func(m *nats.Msg) {
dec := lineprotocol.NewDecoderWithBytes(m.Data)
2021-10-11 16:28:05 +02:00
if err := handleLine(dec); err != nil {
log.Printf("error: %s\n", err.Error())
}
})
}
2021-09-08 09:08:51 +02:00
if err != nil {
return err
}
log.Printf("NATS subscription to 'updates' on '%s' established\n", address)
<-ctx.Done()
err = sub.Unsubscribe()
close(msgs)
wg.Wait()
if err != nil {
return err
}
2021-09-08 09:08:51 +02:00
nc.Close()
log.Println("NATS connection closed")
return nil
}
2022-01-20 10:14:28 +01:00
func decodeLine(dec *lineprotocol.Decoder) error {
for dec.Next() {
rawmeasurement, err := dec.Measurement()
if err != nil {
return err
}
var cluster, host, typeName, typeId, subType, subTypeId string
for {
key, val, err := dec.NextTag()
if err != nil {
return err
}
if key == nil {
break
}
switch string(key) {
case "cluster":
cluster = string(val)
case "hostname":
host = string(val)
case "type":
typeName = string(val)
case "type-id":
typeId = string(val)
case "subtype":
subType = string(val)
case "stype-id":
subTypeId = string(val)
default:
// Ignore unkown tags (cc-metric-collector might send us a unit for example that we do not need)
// return fmt.Errorf("unkown tag: '%s' (value: '%s')", string(key), string(val))
}
}
selector := make([]string, 2, 4)
selector[0] = cluster
selector[1] = host
if len(typeId) > 0 {
selector = append(selector, typeName+typeId)
if len(subTypeId) > 0 {
selector = append(selector, subType+subTypeId)
}
}
metrics := make([]Metric, 0, 10)
measurement := string(rawmeasurement)
if measurement == "data" {
for {
key, val, err := dec.NextField()
if err != nil {
return err
}
if key == nil {
break
}
var value Float
if val.Kind() == lineprotocol.Float {
value = Float(val.FloatV())
} else if val.Kind() == lineprotocol.Int {
value = Float(val.IntV())
} else {
return fmt.Errorf("unsupported value type in message: %s", val.Kind().String())
}
metrics = append(metrics, Metric{
Name: string(key),
Value: value,
})
}
} else {
var value Float
for {
key, val, err := dec.NextField()
if err != nil {
return err
}
if key == nil {
break
}
if string(key) != "value" {
return fmt.Errorf("unkown field: '%s' (value: %#v)", string(key), val)
}
if val.Kind() == lineprotocol.Float {
value = Float(val.FloatV())
} else if val.Kind() == lineprotocol.Int {
value = Float(val.IntV())
} else {
return fmt.Errorf("unsupported value type in message: %s", val.Kind().String())
}
}
metrics = append(metrics, Metric{
Name: measurement,
Value: value,
})
}
t, err := dec.Time(lineprotocol.Second, time.Now())
if err != nil {
return err
}
// log.Printf("write: %s (%v) -> %v\n", string(measurement), selector, value)
if err := memoryStore.Write(selector, t.Unix(), metrics); err != nil {
return err
}
}
return nil
}