Interface AgentExecutionFailed

Event emitted when an agent execution fails

interface AgentExecutionFailed {
    agentId: string;
    agentName: string;
    eventType: "AgentExecutionFailed";
    error: string;
    contextId?: string;
    durationMs: number;
    occurredAt: Date;
}

Hierarchy (View Summary)

Properties

agentId: string
agentName: string
eventType: "AgentExecutionFailed"
error: string
contextId?: string
durationMs: number
occurredAt: Date

The timestamp when this event occurred.