You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 21, 2023. It is now read-only.
Currently libbeat's disk queue (de)serialization (https://github.com/elastic/beats/blob/main/libbeat/publisher/queue/diskqueue/serialize.go) assumes the underlying event type is publisher.Event, which needs to change before we can support the disk queue in the shipper. The disk queue should accept a serializer as part of its configuration (possibly defaulting to its current behavior for simplicity in libbeat), so we can use it to store shipper events.
Currently libbeat's disk queue (de)serialization (https://github.com/elastic/beats/blob/main/libbeat/publisher/queue/diskqueue/serialize.go) assumes the underlying event type is
publisher.Event, which needs to change before we can support the disk queue in the shipper. The disk queue should accept a serializer as part of its configuration (possibly defaulting to its current behavior for simplicity in libbeat), so we can use it to store shipper events.