decompress_gzip_field

decompress_gzip_field #

CategoryScope
Parsingrecord

The “decompress_gzip_field” pipeline processor: gunzip a string or bytes field in place (e.g. a compressed payload collected from a source system).

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:
  - decompress_gzip_field:
      field: "message"
      ignore_missing: true
      fail_on_error: true
Edit Edit this page