Interface PerformanceSlowQueryEvent

Event emitted when a slow query is detected.

interface PerformanceSlowQueryEvent {
    type: "performance:slow-query";
    statement: string;
    duration: number;
    threshold: number;
    timestamp: Date;
}

Properties

type
statement: string
duration: number
threshold: number
timestamp: Date