BUPKIS
    Preparing search index...

    Interface PerformanceAnalysis

    Performance analysis results.

    interface PerformanceAnalysis {
        bottlenecks: {
            category: string;
            impact: "medium" | "high" | "low";
            opsPerSecond: number;
            reason: string;
        }[];
        outliers: {
            category: string;
            deviation: number;
            options: ValueToSchemaOptions;
            value: number;
        }[];
        summary: {
            averageOpsPerSecond: number;
            fastestCategory: string;
            slowestCategory: string;
            totalExecutionTime: number;
        };
        trends: { description: string; factor: string; impact: number }[];
    }
    Index

    Properties

    bottlenecks: {
        category: string;
        impact: "medium" | "high" | "low";
        opsPerSecond: number;
        reason: string;
    }[]

    Identified bottlenecks

    outliers: {
        category: string;
        deviation: number;
        options: ValueToSchemaOptions;
        value: number;
    }[]

    Statistical outliers

    summary: {
        averageOpsPerSecond: number;
        fastestCategory: string;
        slowestCategory: string;
        totalExecutionTime: number;
    }

    Summary statistics

    trends: { description: string; factor: string; impact: number }[]

    Performance trends