2021-03-26 17:03:46 +01:00
|
|
|
package sinks
|
|
|
|
|
|
|
|
import (
|
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"
|
2022-01-25 15:37:43 +01:00
|
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/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 {
|
|
|
|
err := json.Unmarshal(config, &s.config)
|
|
|
|
if err != nil {
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s.meta_as_tags = s.config.MetaAsTags
|
2021-10-12 13:43:58 +02:00
|
|
|
|
2022-02-22 16:15:25 +01:00
|
|
|
return s, nil
|
|
|
|
}
|