Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 2.08 KB

File metadata and controls

48 lines (38 loc) · 2.08 KB
applies_to
serverless stack
ga
ga 9.4+
products
id
observability
id
elasticsearch
id
kibana
id
cloud-serverless
id
cloud-hosted
id
cloud-enterprise
id
cloud-kubernetes
id
elastic-stack
description Sort the elements of an array field in ascending or descending order with the Streams sort processor in Streamlang.

Sort processor [streams-sort-processor]

The Sort processor sorts the elements of an array field in ascending or descending order.

To sort an array field:

  1. Select CreateCreate processor.
  2. Select Sort from the Processor menu.
  3. Set the Source Field to the array field you want to sort.
  4. Set Order to Ascending or Descending. Defaults to Ascending.
  5. (Optional) Set Target field to write the sorted array to a different field. Leave empty to update the Source Field.

This functionality uses the {{es}} Sort processor internally, but you configure it in Streamlang. Streamlang doesn't always have 1:1 parity with the ingest processor options and behavior. Refer to Processor limitations and inconsistencies.

YAML reference [streams-sort-yaml-reference]

In YAML mode, configure the sort processor using the following parameters. For the complete Streamlang syntax, refer to the Streamlang reference.

Parameter Type Required Description
from string Yes Array field to sort.
to string No Target field for the sorted array. Defaults to the source field.
order string No Sort order: asc or desc. Defaults to asc.
ignore_missing boolean No When true, skip this processor if the source field is missing.
- action: sort
  from: attributes.tags
  order: desc

Given a document with attributes.tags set to ["charlie", "alpha", "bravo"], the processor updates the field to ["charlie", "bravo", "alpha"].