urldecode

urldecode #

CategoryScope
Parsingrecord

The “urldecode” pipeline processor: URL-decode string fields (query-string style unescaping).

Configuration #

FieldTypeDefaultDescription
fieldslistfromToSource fields 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:
  - urldecode:
      fields: ["message", "tags"]
      ignore_missing: true
      fail_on_error: true
Edit Edit this page