mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
104 lines
2.4 KiB
Go
104 lines
2.4 KiB
Go
package sinks
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"math"
|
|
"os"
|
|
"strings"
|
|
|
|
// "time"
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
|
)
|
|
|
|
type StdoutSinkConfig struct {
|
|
defaultSinkConfig
|
|
Output string `json:"output_file,omitempty"`
|
|
}
|
|
|
|
type StdoutSink struct {
|
|
sink
|
|
output *os.File
|
|
config StdoutSinkConfig
|
|
}
|
|
|
|
func (s *StdoutSink) Init(config json.RawMessage) error {
|
|
s.name = "StdoutSink"
|
|
if len(config) > 0 {
|
|
err := json.Unmarshal(config, &s.config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
s.output = os.Stdout
|
|
if len(s.config.Output) > 0 {
|
|
if strings.ToLower(s.config.Output) == "stdout" {
|
|
s.output = os.Stdout
|
|
} else if strings.ToLower(s.config.Output) == "stderr" {
|
|
s.output = os.Stderr
|
|
} else {
|
|
f, err := os.OpenFile(s.config.Output, os.O_CREATE|os.O_WRONLY, os.FileMode(0600))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
s.output = f
|
|
}
|
|
}
|
|
s.meta_as_tags = s.config.MetaAsTags
|
|
return nil
|
|
}
|
|
|
|
func (s *StdoutSink) Write(point lp.CCMetric) error {
|
|
var tagsstr []string
|
|
var fieldstr []string
|
|
for key, value := range point.Tags() {
|
|
tagsstr = append(tagsstr, fmt.Sprintf("%s=%s", key, value))
|
|
}
|
|
if s.meta_as_tags {
|
|
for key, value := range point.Meta() {
|
|
tagsstr = append(tagsstr, fmt.Sprintf("%s=%s", key, value))
|
|
}
|
|
}
|
|
for key, v := range point.Fields() {
|
|
switch value := v.(type) {
|
|
case float64:
|
|
if !math.IsNaN(value) {
|
|
fieldstr = append(fieldstr, fmt.Sprintf("%s=%v", key, v))
|
|
} else {
|
|
fieldstr = append(fieldstr, fmt.Sprintf("%s=0.0", key))
|
|
}
|
|
case float32:
|
|
if !math.IsNaN(float64(value)) {
|
|
fieldstr = append(fieldstr, fmt.Sprintf("%s=%v", key, v))
|
|
} else {
|
|
fieldstr = append(fieldstr, fmt.Sprintf("%s=0.0", key))
|
|
}
|
|
case int:
|
|
fieldstr = append(fieldstr, fmt.Sprintf("%s=%d", key, v))
|
|
case int64:
|
|
fieldstr = append(fieldstr, fmt.Sprintf("%s=%d", key, v))
|
|
case string:
|
|
fieldstr = append(fieldstr, fmt.Sprintf("%s=%q", key, v))
|
|
default:
|
|
fieldstr = append(fieldstr, fmt.Sprintf("%s=%v", key, value))
|
|
}
|
|
}
|
|
if len(tagsstr) > 0 {
|
|
fmt.Printf("%s,%s %s %d\n", point.Name(), strings.Join(tagsstr, ","), strings.Join(fieldstr, ","), point.Time().Unix())
|
|
} else {
|
|
fmt.Printf("%s %s %d\n", point.Name(), strings.Join(fieldstr, ","), point.Time().Unix())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *StdoutSink) Flush() error {
|
|
s.output.Sync()
|
|
return nil
|
|
}
|
|
|
|
func (s *StdoutSink) Close() {
|
|
if s.output != os.Stdout && s.output != os.Stderr {
|
|
s.output.Close()
|
|
}
|
|
}
|