-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for RFC3339 time zone offsets in JSON output #13227
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,15 +25,34 @@ import ( | |
"github.com/elastic/go-structform" | ||
) | ||
|
||
// MakeTimestampEncoder creates encoder function that formats time | ||
// into RFC3339 representation with UTC timezone in the output. | ||
func MakeTimestampEncoder() func(*time.Time, structform.ExtVisitor) error { | ||
formatter, err := dtfmt.NewFormatter("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'") | ||
return MakeUTCOrLocalTimestampEncoder(false) | ||
} | ||
|
||
// MakeUTCOrLocalTimestampEncoder creates encoder function that formats time into RFC3339 representation | ||
// with UTC or local timezone in the output (based on localTime boolean parameter). | ||
func MakeUTCOrLocalTimestampEncoder(localTime bool) func(*time.Time, structform.ExtVisitor) error { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. exported function MakeUTCOrLocalTimestampEncoder should have comment or be unexported There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. exported function MakeUTCOrLocalTimestampEncoder should have comment or be unexported |
||
var dtPattern string | ||
if localTime { | ||
dtPattern = "yyyy-MM-dd'T'HH:mm:ss.SSSz" | ||
} else { | ||
dtPattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'" | ||
} | ||
|
||
formatter, err := dtfmt.NewFormatter(dtPattern) | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
buf := make([]byte, 0, formatter.EstimateSize()) | ||
return func(t *time.Time, v structform.ExtVisitor) error { | ||
tmp, err := formatter.AppendTo(buf, (*t).UTC()) | ||
outTime := *t | ||
if !localTime { | ||
outTime = outTime.UTC() | ||
} | ||
tmp, err := formatter.AppendTo(buf, outTime) | ||
if err != nil { | ||
return err | ||
} | ||
|
@@ -43,6 +62,8 @@ func MakeTimestampEncoder() func(*time.Time, structform.ExtVisitor) error { | |
} | ||
} | ||
|
||
// MakeBCTimestampEncoder creates encoder function that formats beats common time | ||
// into RFC3339 representation with UTC timezone in the output. | ||
func MakeBCTimestampEncoder() func(*common.Time, structform.ExtVisitor) error { | ||
enc := MakeTimestampEncoder() | ||
return func(t *common.Time, v structform.ExtVisitor) error { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you under | ||
// the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package json | ||
|
||
import ( | ||
"testing" | ||
"time" | ||
|
||
"github.com/elastic/beats/libbeat/beat" | ||
"github.com/elastic/beats/libbeat/common" | ||
) | ||
|
||
var result []byte | ||
|
||
func BenchmarkUTCTime(b *testing.B) { | ||
var r []byte | ||
codec := New("1.2.3", Config{}) | ||
fields := common.MapStr{"msg": "message"} | ||
var t time.Time | ||
var d time.Duration = 1000000000 | ||
|
||
b.ResetTimer() | ||
|
||
for i := 0; i < b.N; i++ { | ||
t = t.Add(d) | ||
r, _ = codec.Encode("test", &beat.Event{Fields: fields, Timestamp: t}) | ||
} | ||
result = r | ||
} | ||
|
||
func BenchmarkLocalTime(b *testing.B) { | ||
var r []byte | ||
codec := New("1.2.3", Config{LocalTime: true}) | ||
fields := common.MapStr{"msg": "message"} | ||
var t time.Time | ||
var d time.Duration = 1000000000 | ||
|
||
b.ResetTimer() | ||
|
||
for i := 0; i < b.N; i++ { | ||
t = t.Add(d) | ||
r, _ = codec.Encode("test", &beat.Event{Fields: fields, Timestamp: t}) | ||
} | ||
result = r | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exported function MakeUTCOrLocalTimestampEncoder should have comment or be unexported