* Add DLQ and aggregate processor edits. Baseline processor names Signed-off-by: Naarcha-AWS <[email protected]> * Remove processor from titles Signed-off-by: Naarcha-AWS <[email protected]> * Update dlq.md Signed-off-by: Naarcha-AWS <[email protected]> * Add additional feedback Signed-off-by: Naarcha-AWS <[email protected]> * add cross links Signed-off-by: Naarcha-AWS <[email protected]> * Fix typos Signed-off-by: Naarcha-AWS <[email protected]> * Add doc review Signed-off-by: Naarcha-AWS <[email protected]> * Remove link Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> * Update dlq.md Signed-off-by: Naarcha-AWS <[email protected]> * Fix processor title Signed-off-by: Naarcha-AWS <[email protected]> * Apply suggestions from code review Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> --------- Signed-off-by: Naarcha-AWS <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> Co-authored-by: kolchfa-aws <[email protected]> Co-authored-by: Nathan Bower <[email protected]>
1.2 KiB
1.2 KiB
layout, title, parent, grand_parent, nav_order
| layout | title | parent | grand_parent | nav_order |
|---|---|---|---|---|
| default | substitute_string | Processors | Pipelines | 110 |
substitute_string
The substitute_string processor matches a key's value against a regular expression and replaces all matches with a replacement string. substitute_string is a mutate string processor.
Configuration
The following table describes the options you can use to configure the substitue_string processor.
| Option | Required | Type | Description |
|---|---|---|---|
| entries | Yes | List | List of entries. Valid values are source, from, and to. |
| source | N/A | N/A | The key to modify. |
| from | N/A | N/A | The Regex String to be replaced. Special regex characters such as [ and ] must be escaped using \\ when using double quotes and \ when using single quotes. See Java Patterns for more information. |
| to | N/A | N/A | The String to be substituted for each match of from. |