we are having the <system-out><![CDATA[]]></system-out>
tag in our XML File. Due to this tag it could not index and throwing the below Error:
"error"=>{"type"=>"illegal_argument_exception", "reason"=>"can't merge a non object mapping [theXML.testsuite.testcase.system-out] with an object mapping"}}}}
so,tried the below snippet for removing the mentioned tag but not able to remove the tag.
logStash snippet:
ruby {
code =>"
hash = event.to_hash
hash.each do |k,v|
if v == '{}'
event.remove(k)
end
end
"
}
Can you please suggest on this?