mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
Add StdoutSink for debugging purposes
This commit is contained in:
parent
f822f00cdc
commit
913c3719a9
@ -5,7 +5,7 @@
|
|||||||
"host": "localhost",
|
"host": "localhost",
|
||||||
"port": "8080",
|
"port": "8080",
|
||||||
"database": "testdb",
|
"database": "testdb",
|
||||||
"type": "influxdb"
|
"type": "stdout"
|
||||||
},
|
},
|
||||||
"interval" : 3,
|
"interval" : 3,
|
||||||
"duration" : 1,
|
"duration" : 1,
|
||||||
|
@ -26,6 +26,7 @@ var Collectors = map[string]collectors.MetricGetter{
|
|||||||
|
|
||||||
var Sinks = map[string]sinks.SinkFuncs{
|
var Sinks = map[string]sinks.SinkFuncs{
|
||||||
"influxdb": &sinks.InfluxSink{},
|
"influxdb": &sinks.InfluxSink{},
|
||||||
|
"stdout": &sinks.StdoutSink{},
|
||||||
}
|
}
|
||||||
|
|
||||||
// Structure of the configuration file
|
// Structure of the configuration file
|
||||||
|
44
sinks/stdoutSink.go
Normal file
44
sinks/stdoutSink.go
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
package sinks
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"time"
|
||||||
|
"strings"
|
||||||
|
"math"
|
||||||
|
)
|
||||||
|
|
||||||
|
type StdoutSink struct {
|
||||||
|
Sink
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *StdoutSink) Init(host string, port string, user string, password string, database string) error {
|
||||||
|
s.host = host
|
||||||
|
s.port = port
|
||||||
|
s.user = user
|
||||||
|
s.password = password
|
||||||
|
s.database = database
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *StdoutSink) Write(measurement string, tags map[string]string, fields map[string]interface{}, t time.Time) error {
|
||||||
|
var tagsstr []string
|
||||||
|
var fieldstr []string
|
||||||
|
for k,v := range tags {
|
||||||
|
tagsstr = append(tagsstr, fmt.Sprintf("%s=%s", k, v))
|
||||||
|
}
|
||||||
|
for k,v := range fields {
|
||||||
|
if !math.IsNaN(v.(float64)) {
|
||||||
|
fieldstr = append(fieldstr, fmt.Sprintf("%s=%v", k, v.(float64)))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(tagsstr) > 0 {
|
||||||
|
fmt.Printf("%s,%s %s %d\n", measurement, strings.Join(tagsstr, ","), strings.Join(fieldstr, ","), t.Unix())
|
||||||
|
} else {
|
||||||
|
fmt.Printf("%s %s %d\n", measurement, strings.Join(fieldstr, ","), t.Unix())
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *StdoutSink) Close() {
|
||||||
|
return
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user