The decode_xml
processor decodes XML data that is stored under the field
key. It outputs the result into the target_field
.
This example demonstrates how to decode an XML string contained in the message
field and write the resulting fields into the root of the document. Any fields
that already exist are overwritten.
- decode_xml:
field: message
target_field: ""
overwrite_keys: true
By default any decoding errors that occur will stop the processing chain, and
the error will be added to the error.message
field. To ignore all errors and
continue to the next processor, set ignore_failure: true
. To specifically
ignore failures caused by field
not existing, set ignore_missing: true
.
- decode_xml:
field: example
target_field: xml
ignore_missing: true
ignore_failure: true
By default the names of all keys converted from XML are converted to lowercase.
To disable this behavior, set to_lower: false
, for example:
- decode_xml:
field: message
target_field: xml
to_lower: false
Example XML input:
<catalog>
<book seq="1">
<author>William H. Gaddis</author>
<title>The Recognitions</title>
<review>One of the great seminal American novels of the 20th century.</review>
</book>
</catalog>
Will produce the following output:
{
"xml": {
"catalog": {
"book": {
"author": "William H. Gaddis",
"review": "One of the great seminal American novels of the 20th century.",
"seq": "1",
"title": "The Recognitions"
}
}
}
}
processors.asciidoc :works-with-fields!:
Name | Required | Default | Description |
---|---|---|---|
|
Yes |
|
Source field containing the XML. |
|
No |
The field under which the decoded XML will be written. By default the decoded XML object replaces the field from which it was read. To merge the decoded XML fields into the root of the event, specify |
|
|
No |
|
Whether keys that already exist in the event are overwritten by keys from the decoded XML object. |
|
No |
|
Whether to convert all keys to lowercase. |
|
No |
XML key to use as the document ID. If configured, the field will be removed from the original XML document and stored in |
|
|
No |
|
Whether to return an error if a specified field does not exist. |
|
No |
|
Whether to ignore all errors produced by the processor. |
See [conditions] for a list of supported conditions.