Hello ,
I have been trying to parse an array from JSON log, where the size of the array is varies in different logs. I have attached the sample of the log below.
I’ve run into an issue that I haven’t been able to resolve when trying to parse "name" from the log and merge it to the UDM "security_result.threat_feed_name", which accepts string (repeated) values.
Solved! Go to Solution.
So the problem is that while security_result is repeated threat_feed_name is not, so your first merge won't work, which is what the error indicates. You need to create multiple security_results or something like that ( you can do security_result.about.security_result and do repeated there if you prefer to keep one main security result). You can see the design pattern below.