decode_base64_field

decode_base64_field #

CategoryScope
Parsingrecord

The “decode_base64_field” pipeline processor: base64-decode a single string field (with or without padding).

Configuration #

FieldTypeDefaultDescription
fieldfromToSource field to read from.
ignore_missingboolfalseDo not fail when the source field is missing.
fail_on_errorbooltrueFail the record when the field cannot be decoded.

Example #

processor:
  - decode_base64_field:
      field: "message"
      ignore_missing: true
      fail_on_error: true
Edit Edit this page