Edge Delta Split With Delimiter Node

Split logs according to a given delimiter.

Overview

The Split with Delimiter node splits the body field using a given delimiter. It creates individual logs for each delimited event discovered in the input log.

Example Configuration

This configuration splits logs where it detects a semi-colon.

nodes:
- name: split_items_test
  type: split_with_delimiter
  delimiter: ;

Input log

Suppose this log in processed by the node. It is a single log line consisting of three events that are separated with a semi-colon.

2023-04-14 09:15:00 node12 INFO: User login successful;2023-04-14 09:16:25 node12 WARN: Low disk space on server;2023-04-14 09:17:45 node12 ERROR: Database connection failed

Output

The output is split into three individual logs.

Each of these logs can now be individually processed for further analysis, such as alerting for warnings or errors, monitoring user activity, or tracking system health.

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: ","