Hi.
I'm facing issues trying to configure decode_xml processor in filebeat version 7.11.
The error is the following:
Failed to start crawler: starting input failed: Error while initializing input: the processor action decode_xml does not exist. Valid actions: drop_event, include_fields, add_cloud_metadata, add_locale, convert, add_fields, add_tags, dissect, fingerprint, rate_limit, decode_base64_field, add_observer_metadata, add_id, script, add_cloudfoundry_metadata, add_labels, add_host_metadata, copy_fields, dns, registered_domain, add_docker_metadata, decode_csv_fields, decode_cef, add_process_metadata, extract_array, timestamp, decompress_gzip_field, community_id, urldecode, add_kubernetes_metadata, detect_mime_type, rename, drop_fields, replace, truncate_fields, add_network_direction, decode_json_fields
github.com/elastic/beats/v7/libbeat/processors.New
/go/src/github.com/elastic/beats/libbeat/processors/processor.go:106
My configuration is as follows:
filebeat.inputs:
- type: log
paths:
- /<PATH>
processors:
- decode_xml:
field: message
target_field: "xml"
overwrite_keys: true
....