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
Right now I need to extract around 10 json path for the same event.
I am going to try JayWay json library so I can reuse the document parsed.
I hope it will be more efficient if I do Object document = Configuration.defaultConfiguration().jsonProvider().parse(json); once per event body and on that I extract all the json path I need with JsonPath.read(document, "$.date");
I wanted to modify name and jsonpath parameter context to names and jsonpaths. I would then split on a special character such as , just like I saw in other flume interceptor.
Do you need such behaviour too?
The text was updated successfully, but these errors were encountered:
Right now I need to extract around 10 json path for the same event.
I am going to try JayWay json library so I can reuse the document parsed.
I hope it will be more efficient if I do
Object document = Configuration.defaultConfiguration().jsonProvider().parse(json);
once per event body and on that I extract all the json path I need withJsonPath.read(document, "$.date");
I wanted to modify name and jsonpath parameter context to names and jsonpaths. I would then split on a special character such as
,
just like I saw in other flume interceptor.Do you need such behaviour too?
The text was updated successfully, but these errors were encountered: