2021-03-26 17:03:46 +01:00
|
|
|
package sinks
|
|
|
|
|
|
|
|
import (
|
2023-10-13 09:53:49 +02:00
|
|
|
"bytes"
|
2022-02-04 18:12:24 +01:00
|
|
|
"encoding/json"
|
2021-03-26 17:08:00 +01:00
|
|
|
"fmt"
|
2022-02-04 18:12:24 +01:00
|
|
|
"os"
|
2021-03-26 17:08:00 +01:00
|
|
|
"strings"
|
2021-10-12 13:43:58 +02:00
|
|
|
|
2021-10-04 15:23:43 +02:00
|
|
|
// "time"
|
2023-10-13 09:53:49 +02:00
|
|
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
2022-10-10 11:53:11 +02:00
|
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
2021-03-26 17:03:46 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type StdoutSink struct {
|
2022-02-08 13:38:18 +01:00
|
|
|
sink // meta_as_tags, name
|
2022-02-04 18:12:24 +01:00
|
|
|
output *os.File
|
2022-02-08 13:38:18 +01:00
|
|
|
config struct {
|
|
|
|
defaultSinkConfig
|
|
|
|
Output string `json:"output_file,omitempty"`
|
|
|
|
}
|
2021-03-26 17:03:46 +01:00
|
|
|
}
|
|
|
|
|
2022-02-23 14:56:29 +01:00
|
|
|
func (s *StdoutSink) Write(m lp.CCMetric) error {
|
|
|
|
fmt.Fprint(
|
|
|
|
s.output,
|
|
|
|
m.ToLineProtocol(s.meta_as_tags),
|
|
|
|
)
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewStdoutSink(name string, config json.RawMessage) (Sink, error) {
|
|
|
|
s := new(StdoutSink)
|
2022-02-22 16:15:25 +01:00
|
|
|
s.name = fmt.Sprintf("StdoutSink(%s)", name)
|
2022-02-04 18:12:24 +01:00
|
|
|
if len(config) > 0 {
|
2023-10-13 09:53:49 +02:00
|
|
|
d := json.NewDecoder(bytes.NewReader(config))
|
|
|
|
d.DisallowUnknownFields()
|
|
|
|
if err := d.Decode(&s.config); err != nil {
|
|
|
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
2022-02-23 14:56:29 +01:00
|
|
|
return nil, err
|
2022-02-04 18:12:24 +01:00
|
|
|
}
|
|
|
|
}
|
2022-02-08 13:38:18 +01:00
|
|
|
|
2022-02-04 18:12:24 +01:00
|
|
|
s.output = os.Stdout
|
|
|
|
if len(s.config.Output) > 0 {
|
2022-02-08 13:38:18 +01:00
|
|
|
switch strings.ToLower(s.config.Output) {
|
|
|
|
case "stdout":
|
2022-02-04 18:12:24 +01:00
|
|
|
s.output = os.Stdout
|
2022-02-08 13:38:18 +01:00
|
|
|
case "stderr":
|
2022-02-04 18:12:24 +01:00
|
|
|
s.output = os.Stderr
|
2022-02-08 13:38:18 +01:00
|
|
|
default:
|
2022-02-04 18:12:24 +01:00
|
|
|
f, err := os.OpenFile(s.config.Output, os.O_CREATE|os.O_WRONLY, os.FileMode(0600))
|
|
|
|
if err != nil {
|
2022-02-23 14:56:29 +01:00
|
|
|
return nil, err
|
2022-02-04 18:12:24 +01:00
|
|
|
}
|
|
|
|
s.output = f
|
|
|
|
}
|
|
|
|
}
|
2022-03-15 16:16:26 +01:00
|
|
|
// Create lookup map to use meta infos as tags in the output metric
|
|
|
|
s.meta_as_tags = make(map[string]bool)
|
|
|
|
for _, k := range s.config.MetaAsTags {
|
|
|
|
s.meta_as_tags[k] = true
|
|
|
|
}
|
2021-10-12 13:43:58 +02:00
|
|
|
|
2022-02-22 16:15:25 +01:00
|
|
|
return s, nil
|
|
|
|
}
|