Custom Event

Custom events are used to track other interactions in your LLM application, such as conversions or link clicks.

Example:

{
   "type": "event"
   "name": "Checkout",
   "metadata": {
     "payment_method": "card",
   },
   "event_timestamp": "2020-02-20T20:20:23Z"
}
Field Name
Type
Description
Required

type

String

Custom Event Type

name

String

Name of custom event, prefer to give all events of the same class the same identifiable "name" field.

metadata

A collection of arbitrary key-value pairs.

event_timestamp

Timestamp

(ISO 8601)

The timestamp of when this message was sent or received.

Last updated

Was this helpful?