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
I have XML with namespace in tag names and attribute names. Option remove_namespaces => true works fine on tags but keep attributes with original names.
I have XML with namespace in tag names and attribute names. Option remove_namespaces => true works fine on tags but keep attributes with original names.
Example XML:
<x:recording xmlns:x="http://someURI" x:ref="0000000" x:version="10">
<x:finalized>true</x:finalized>
<x:master>true</x:master>
</x:recording>
Event after XML filter:
"recording": {
"x:ref": "0000000"
"x:version": "10",
"master": {
"content": "true"
},
"finalized": {
"content": "true"
}
}
Logstash 6.5.1
The text was updated successfully, but these errors were encountered: