Edge Delta Split With Delimiter Node
less than a minute
Overview
The Split with Delimiter node splits body
using a given delimiter. It copies the original log multiple times and sets each with a split log.

Example Configuration
nodes:
- name: split_items
type: split_with_delimiter
delimiter: ","
Required Parameters
name
A descriptive name for the node. This is the name that will appear in Visual Pipelines and you can reference this node in the yaml using the name. It must be unique across all nodes. It is a yaml list element so it begins with a -
and a space followed by the string. It is a required parameter for all nodes.
nodes:
- name: <node name>
type: <node type>
type: split_with_delimiter
The type
parameter specifies the type of node being configured. It is specified as a string from a closed list of node types. It is a required parameter.
nodes:
- name: <node name>
type: <node type>
delimiter
The delimiter parameter defines the string that will be used for splitting the raw log. It is specified as a string and is required.
nodes:
- name: split_items
type: split_with_delimiter
delimiter: ","