Interface EnhancedToolSpanAttributes

Enhanced tool span attributes with execution tracking

interface EnhancedToolSpanAttributes {
    toolName: string;
    toolDescription?: string;
    toolType: string;
    toolCallId: string;
    args: Record<string, any>;
    response: any;
    sessionId: string;
    userId?: string;
    eventId: string;
    executionOrder?: number;
    parallelGroup?: string;
    retryCount?: number;
    isCallbackOverride?: boolean;
}

Hierarchy (view full)

Properties

toolName: string
toolDescription?: string
toolType: string
toolCallId: string
args: Record<string, any>
response: any
sessionId: string
userId?: string
eventId: string
executionOrder?: number
parallelGroup?: string
retryCount?: number
isCallbackOverride?: boolean