add more processor documentation

This commit is contained in:
Joel Wetzell
2026-02-08 15:16:49 -06:00
parent c94002c1b6
commit ffbd717993
8 changed files with 144 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
---
title: Sleep
sidebar:
order: 1
---
The `time.sleep` processor will sleep for the specified `duration` in milliseconds before passing the message to the next processor.
- **type**: `time.sleep`
- **params**:
- **duration**: the duration to sleep in milliseconds
### Example
This would sleep for 5 seconds before passing the message to the next processor.
```
- type: time.sleep
params:
duration: 5000
```