add new ID property for processors and routes

This commit is contained in:
Joel Wetzell
2026-08-19 10:12:58 -05:00
parent a90a74650c
commit a33c05373f
47 changed files with 104 additions and 51 deletions
+1
View File
@@ -10,5 +10,6 @@ Processors are anything that create or manipulate messages. They are configured
A processor YAML block has the following properties
- **id**: a unique identifier for the processor (auto generated when using the web interface)
- **type**: the processor type
- **params**: optional map for processor configuration values. The valid values will depend on the processor type
+1
View File
@@ -8,6 +8,7 @@ Routes take the messages coming from a module and push them through a list of [p
## YAML Definition
- **id**: a unique identifier for the route (auto generated when using the web interface)
- **input**: the id of the [module](/concepts/modules) that will provide messages to this route
- **processors**: (optional) array of [processors](/concepts/processors) that will be called in order and the result of the previous will be fed to the next processor.
- an error in a processor step will result in the individual route being terminated