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
Currently the call to LogStashLogger.configuration.customize_event_block.call(event)
happens before the current_tags are added to the event. As such, when using tagged logging, the customize_event can't access the tags.
Why do we care?
In my case tagged logging (Rails) is adding a few pieces of information, such as session information, current user etc. In the customize_event call I'd like to change the tags into proper fields.
The text was updated successfully, but these errors were encountered:
Currently the call to
LogStashLogger.configuration.customize_event_block.call(event)
happens before the current_tags are added to the event. As such, when using tagged logging, the customize_event can't access the tags.
Why do we care?
In my case tagged logging (Rails) is adding a few pieces of information, such as session information, current user etc. In the customize_event call I'd like to change the tags into proper fields.
The text was updated successfully, but these errors were encountered: