Skip to main content
Version: Next

Memory

The Memory input reads messages from an in-memory queue that can be pre-seeded with initial messages in configuration. Mainly used for testing and development.

Configuration

FieldTypeRequiredDefaultDescription
typestringyesConstant value "memory"
messagesarray<string>noInitial list of messages enqueued at startup

Examples

input:
type: "memory"
messages:
- "Hello"
- "World"