interface RequestSpan {
    attributes: Record<string, unknown>;
    conversationId: string;
    duration: number;
    events: TimedEvent[];
    name: string;
    parentSpanId: undefined | string;
    requestId: string;
    spanId: string;
    statusCode: number;
    timestamp: number;
}

Properties

attributes: Record<string, unknown>
conversationId: string
duration: number
events: TimedEvent[]
name: string
parentSpanId: undefined | string
requestId: string
spanId: string
statusCode: number
timestamp: number