For the complete documentation index, see llms.txt. This page is also available as Markdown.

Send Event

These actions provide ability to send events to an output stream.

Send Event Actions

SendEvent

Sends the event received to another stream with the following event metadata parameters:

Parameter
Definition
Example
Default

System

System to send event to

kafka_default

-

Stream

Stream to send event to

tracking

-

Key

Key value to use

123

-

Partition

Partition to use

1

[Calculated from key]

{
  "$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