logrus/json_formatter.go

42 lines
940 B
Go
Raw Normal View History

2014-03-10 23:22:08 +00:00
package logrus
import (
"encoding/json"
"fmt"
)
type JSONFormatter struct {
// TimestampFormat sets the format used for marshaling timestamps.
TimestampFormat string
}
2014-03-10 23:22:08 +00:00
func (f *JSONFormatter) Format(entry *Entry) ([]byte, error) {
2014-12-10 02:53:40 +00:00
data := make(Fields, len(entry.Data)+3)
for k, v := range entry.Data {
2015-03-10 16:04:57 +00:00
switch v := v.(type) {
case error:
// Otherwise errors are ignored by `encoding/json`
// https://github.com/Sirupsen/logrus/issues/137
data[k] = v.Error()
default:
data[k] = v
}
2014-12-10 02:53:40 +00:00
}
prefixFieldClashes(data)
2015-05-26 13:02:13 +00:00
timestampFormat := f.TimestampFormat
if timestampFormat == "" {
timestampFormat = DefaultTimestampFormat
}
2015-05-26 13:02:13 +00:00
data["time"] = entry.Time.Format(timestampFormat)
2014-12-10 02:53:40 +00:00
data["msg"] = entry.Message
data["level"] = entry.Level.String()
2014-12-10 02:53:40 +00:00
serialized, err := json.Marshal(data)
2014-03-10 23:22:08 +00:00
if err != nil {
return nil, fmt.Errorf("Failed to marshal fields to JSON, %v", err)
}
return append(serialized, '\n'), nil
}