Skip to content

Commit

Permalink
Add time encoders to disk spool (elastic#10197)
Browse files Browse the repository at this point in the history
Register encoders for time.Time and common.Time so that events containing timestamps
can be serialized.

Fixes elastic#10099

(cherry picked from commit 2b63496)
  • Loading branch information
andrewkroh committed Mar 4, 2019
1 parent 04e75f7 commit ffa10d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ https://github.com/elastic/beats/compare/v6.6.0...6.x[Check the HEAD diff]
- Fix stopping of modules started by kubernetes autodiscover. {pull}10476[10476]
- Fix a issue when remote and local configuration didn't match when fetching configuration from Central Management. {issue}10587[10587]
- Add ECS-like selectors and dedotting to docker autodiscover. {issue}10757[10757] {pull}10862[10862]
- Fix encoding of timestamps when using disk spool. {issue}10099[10099]

*Auditbeat*

Expand Down
8 changes: 7 additions & 1 deletion libbeat/publisher/queue/spool/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (

"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/outputs/codec"
"github.com/elastic/beats/libbeat/publisher"
"github.com/elastic/go-structform"
"github.com/elastic/go-structform/cborl"
Expand Down Expand Up @@ -95,7 +96,12 @@ func (e *encoder) reset() {
panic("no codec configured")
}

folder, err := gotype.NewIterator(visitor)
folder, err := gotype.NewIterator(visitor,
gotype.Folders(
codec.MakeTimestampEncoder(),
codec.MakeBCTimestampEncoder(),
),
)
if err != nil {
panic(err)
}
Expand Down

0 comments on commit ffa10d3

Please sign in to comment.