Send Event
This handler (com.rierino.handler.SendEventHandler) provides ability to send events to an output stream.
Actions
SendEvent
Parameter
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"parameters": {
"type": "object",
"properties": {
"system": {
"type": "string",
"definition": "System to send event to",
"example": "kafka_default",
"default": null
},
"stream": {
"type": "string",
"definition": "Stream to send event to",
"example": "tracking",
"default": null
},
"key": {
"type": ["string", "integer"],
"definition": "Key value to use",
"example": 123,
"default": null
},
"partition": {
"type": ["integer", "string"],
"definition": "Partition to use",
"example": 1,
"default": "[Calculated from key]"
}
}
}
}
}
}
}Last updated
