Loading

Concat processor

The Concat processor concatenates a mix of field values and literal strings into a single field.

To concatenate values:

  1. Select CreateCreate processor.
  2. Select Concat from the Processor menu.
  3. Set the items to concatenate. Each item is either a field reference or a literal string value.
  4. Set the Target field where the concatenated result is stored.

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

Parameter Type Required Description
from array Yes Items to concatenate. Each item is either { type: "field", value: "<field_name>" } or { type: "literal", value: "<text>" }.
to string Yes Target field.
ignore_missing boolean No When true, skip this processor if any referenced field is missing.
- action: concat
  from:
    - type: literal
      value: "User: "
    - type: field
      value: attributes.username
    - type: literal
      value: " (ID: "
    - type: field
      value: attributes.user_id
    - type: literal
      value: ")"
  to: attributes.user_summary