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
Describe the solution you'd like
A way to pass the root (or entire existing document) of an Event to json pointer expression. For example, this could be with /, allowing add_entries to add keys at the highest level with the existing document
Describe alternatives you've considered (Optional)
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
In JsonPointer specification, empty string ("") refers to the whole document and / refers to field with empty string as key.
I followed that way and made some changes in #4033 so that JacksonEvent#get("", Object.class) will get you the entire document. Currently "" is not allowed to use in JacksonEvent#put, but we can allow that to put objects to root of the document.
Is your feature request related to a problem? Please describe.
As a user of Data Prepper, my Events look like this
and I would like them to look like this
Describe the solution you'd like
A way to pass the root (or entire existing document) of an Event to json pointer expression. For example, this could be with
/
, allowing add_entries to add keys at the highest level with the existing documentDescribe alternatives you've considered (Optional)
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: