ErrorEvent: Client & Event & Source & {
    interactionName: string;
    correlationId?: string;
    errorId?: string;
    errorType?: string;
    errorCode?: string;
    errorMessage?: string;
}

Event providing information about an error occurring in another event.

Type declaration

  • interactionName: string

    The user interaction being described by the event.

  • Optional correlationId?: string

    Identifier that links multiple events.

  • Optional errorId?: string

    Unique identifier of an error. This can be used to link error events to other user engagement events

  • Optional errorType?: string

    Type of error (e.g., validation, exception)

  • Optional errorCode?: string

    The code of the error

  • Optional errorMessage?: string

    The message associated with the error.