mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
Fix format of StdoutSink
This commit is contained in:
parent
913c3719a9
commit
fe87b2c7cb
@ -2,9 +2,9 @@ package sinks
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
"strings"
|
||||
"math"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
||||
type StdoutSink struct {
|
||||
@ -23,10 +23,10 @@ func (s *StdoutSink) Init(host string, port string, user string, password string
|
||||
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 {
|
||||
for k, v := range tags {
|
||||
tagsstr = append(tagsstr, fmt.Sprintf("%s=%s", k, v))
|
||||
}
|
||||
for k,v := range fields {
|
||||
for k, v := range fields {
|
||||
if !math.IsNaN(v.(float64)) {
|
||||
fieldstr = append(fieldstr, fmt.Sprintf("%s=%v", k, v.(float64)))
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user