解码 Base64 字段

编辑

decode_base64_field处理器指定一个需要进行 Base64 解码的字段。field键包含一个from: old-key和一个to: new-key对。from是源字段名,to是目标字段名。

要覆盖字段,请先重命名目标字段,或者使用drop_fields处理器删除该字段,然后再重命名。

processors:
  - decode_base64_field:
      field:
        from: "field1"
        to: "field2"
      ignore_missing: false
      fail_on_error: true

在上面的示例中:- field1 解码到 field2

decode_base64_field处理器具有以下配置设置

ignore_missing
(可选)如果设置为 true,则在缺少应进行 Base64 解码的键时不会记录错误。默认为false
fail_on_error
(可选)如果设置为 true,则在发生错误时,字段的 Base64 解码将停止,并返回原始事件。如果设置为 false,即使解码过程中发生错误,解码也会继续。默认为true

请参阅条件以了解支持的条件列表。