Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 1.49 KB

processor-truncate_fields.asciidoc

File metadata and controls

65 lines (50 loc) · 1.49 KB

Truncate fields

truncate_fields

The truncate_fields processor truncates a field to a given size. If the size of the field is smaller than the limit, the field is left as is.

Example

This configuration truncates the field named message to five characters:

  - truncate_fields:
      fields:
        - message
      max_characters: 5
      fail_on_error: false
      ignore_missing: true

Configuration settings

processors.asciidoc :works-with-fields!:

Name Required Default Description

fields

Yes

List of fields to truncate. You can use the @metadata. prefix to truncate values in the event metadata instead of event fields.

max_bytes

Yes

Maximum number of bytes in a field. Mutually exclusive with max_characters.

max_characters

Yes

Maximum number of characters in a field. Mutually exclusive with max_bytes.

fail_on_error

No

true

If true and an error occurs, any changes to the event are reverted, and the original event is returned. If false, processing continues even if an error occurs.

ignore_missing

No

false

Whether to ignore events that lack the source field. If false, processing of the event fails if a field is missing.