Skip to content

Commit

Permalink
Add decompress_gzip_field processor (elastic#12733)
Browse files Browse the repository at this point in the history
This PR adds a new processor named `decompress_gzip_field`. As the name implies, it decompresses gzipped fields.

Example configuration:
```yaml
processors:
- decompress_gzip_field:
    from: "source"
    to: "destination"
    ignore_missing: false
    fail_on_error: true
```

I also added reference configuration to Kinesis functions, so users can quickly enable decoding data from streams.
  • Loading branch information
kvch authored Jul 1, 2019
1 parent d5ddeb0 commit 57d155a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions journalbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,13 @@ setup.template.settings:
# target: ""
# overwrite_keys: false
#
#processors:
#- decompress_gzip_field:
# from: "field1"
# to: "field2"
# ignore_missing: false
# fail_on_error: true
#
# The following example copies the value of message to message_copied
#
#processors:
Expand Down

0 comments on commit 57d155a

Please sign in to comment.