forked from opensearch-project/documentation-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds documentation for the Data Prepper delay processor. (opensearch-…
…project#7708) Adds documentation for the delay processor. Signed-off-by: David Venable <[email protected]> Signed-off-by: Melissa Vagi <[email protected]> Co-authored-by: Melissa Vagi <[email protected]> Signed-off-by: Sander van de Geijn <[email protected]>
- Loading branch information
1 parent
b57f352
commit 6ab605a
Showing
3 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
layout: default | ||
title: delay | ||
parent: Processors | ||
grand_parent: Pipelines | ||
nav_order: 41 | ||
--- | ||
|
||
# delay | ||
|
||
This processor will add a delay into the processor chain. Typically, you should use this only for testing, experimenting, and debugging. | ||
|
||
## Configuration | ||
|
||
Option | Required | Type | Description | ||
:--- | :--- | :--- | :--- | ||
`for` | No | Duration | The duration of time to delay. Defaults to `1s`. | ||
|
||
## Usage | ||
|
||
The following example shows using the `delay` processor to delay for 2 seconds. | ||
|
||
```yaml | ||
processor: | ||
- delay: | ||
for: 2s | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters