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
The current interface to aucoalesce is func CoalesceMessages(msgs []*auparse.AuditMessage) (*Event, error).
Given that the warnings produced by this function are mainly for debugging and development we could change the function to accept a variable number of options like func CoalesceMessages(msgs []*auparse.AuditMessage, opts ...Option) (*Event, error). Then we could pass an option to enable the inclusion of warnings with the event. Like
The current interface to aucoalesce is
func CoalesceMessages(msgs []*auparse.AuditMessage) (*Event, error)
.Given that the warnings produced by this function are mainly for debugging and development we could change the function to accept a variable number of options like
func CoalesceMessages(msgs []*auparse.AuditMessage, opts ...Option) (*Event, error)
. Then we could pass an option to enable the inclusion of warnings with the event. LikeFuture options might be to make ECS enrichment configurable.
The text was updated successfully, but these errors were encountered: