* Added metrics section to Aggregate processor page. Signed-off-by: carolxob <[email protected]> * Added Metrics section to individual Processors pages. Signed-off-by: carolxob <[email protected]> * Added metrics section for JSON processor. Signed-off-by: carolxob <[email protected]> * Added metrics sections. Changed Default is to Default value is. Signed-off-by: carolxob <[email protected]> * Corrected references from AWS S3 to Amazon S3. Signed-off-by: carolxob <[email protected]> * Minor updates to Metrics sections and phrasing. Signed-off-by: carolxob <[email protected]> * Updated Action link. Signed-off-by: carolxob <[email protected]> * Updates based on tech review feedback. Signed-off-by: carolxob <[email protected]> * Updates based on tech review feedback. Signed-off-by: carolxob <[email protected]> * Tech review feedback. Signed-off-by: carolxob <[email protected]> * Minor updates to buffer_size and batch_size default values. Signed-off-by: carolxob <[email protected]> * Edits to Metrics sections for each processor. Signed-off-by: carolxob <[email protected]> * Update made based ondoc review feedback. Signed-off-by: carolxob <[email protected]> * Minor updates to intro text for processor pages. Minor adjustements to other text for clarity. Signed-off-by: carolxob <[email protected]> * Minor edits. Signed-off-by: carolxob <[email protected]> * Adjustements to phrasing, fixed typos. Signed-off-by: carolxob <[email protected]> * Minor updates to word choice and corrected a typo. Signed-off-by: carolxob <[email protected]> * Minor edit. Signed-off-by: carolxob <[email protected]> * Made updates based ondoc review feedback. Signed-off-by: carolxob <[email protected]> * Updates to http-source. Signed-off-by: carolxob <[email protected]> * Added common processors table to affected docs. Signed-off-by: carolxob <[email protected]> * Minor update to one file. Signed-off-by: carolxob <[email protected]> * Minor update based on tech review feedback. Signed-off-by: carolxob <[email protected]> * Minor edits. Signed-off-by: carolxob <[email protected]> * Major editorial feedback incorporated through key-value.md. Signed-off-by: carolxob <[email protected]> * Incorporated major editorial feedback thup to service-map-stateful. Signed-off-by: carolxob <[email protected]> * Incorporated major editorial feedback for Processors section. Signed-off-by: carolxob <[email protected]> * Major editorial updates, specifically to inclusion of text introducing option configuration tables. Signed-off-by: carolxob <[email protected]> * Major editorial feedback through otel-trace.md incorporated. Signed-off-by: carolxob <[email protected]> * Major editorial edits incorporated. Signed-off-by: carolxob <[email protected]> * Technical feedback and editorial feedback incorporated. Signed-off-by: carolxob <[email protected]> * Incorporated missing editorial feedback. Signed-off-by: carolxob <[email protected]> * Minor adjustements to OpenSearch sink. Signed-off-by: carolxob <[email protected]> * Minor changes to capitalization. Signed-off-by: carolxob <[email protected]> * Minor edits. Signed-off-by: carolxob <[email protected]> * Made one instance of processor name consistent with other references. Signed-off-by: carolxob <[email protected]> * Minor update based on editorial feedback. Signed-off-by: carolxob <[email protected]> --------- Signed-off-by: carolxob <[email protected]>
28 lines
1.2 KiB
Markdown
28 lines
1.2 KiB
Markdown
---
|
|
layout: default
|
|
title: split_string
|
|
parent: Processors
|
|
grand_parent: Pipelines
|
|
nav_order: 45
|
|
---
|
|
|
|
# split_string
|
|
|
|
## Overview
|
|
|
|
The `split_string` processor splits a field into an array using a delimiting character and is a [mutate string](https://github.com/opensearch-project/data-prepper/tree/main/data-prepper-plugins/mutate-string-processors#mutate-string-processors) processor. The following table describes the options you can use to configure the `split_string` processor.
|
|
|
|
Option | Required | Type | Description
|
|
:--- | :--- | :--- | :---
|
|
entries | Yes | List | List of entries. Valid values are `source`, `delimiter`, and `delimiter_regex`.
|
|
source | N/A | N/A | The key to split.
|
|
delimiter | No | N/A | The separator character responsible for the split. Cannot be defined at the same time as `delimiter_regex`. At least `delimiter` or `delimiter_regex` must be defined.
|
|
delimiter_regex | No | N/A | The regex string responsible for the split. Cannot be defined at the same time as `delimiter`. At least `delimiter` or `delimiter_regex` must be defined.
|
|
|
|
<!---## Configuration
|
|
|
|
Content will be added to this section.
|
|
|
|
## Metrics
|
|
|
|
Content will be added to this section.---> |