Member Junction
    Preparing search index...

    Emitted during preflight and mj doctor for individual health checks. Frontends render these as a diagnostic report with pass/fail/warn/info indicators.

    Diagnostics — the aggregated result model for all diagnostic checks.

    interface DiagnosticEvent {
        Check: string;
        Message: string;
        Status: "warn" | "info" | "pass" | "fail";
        SuggestedFix?: string;
        Type: "diagnostic";
    }
    Index

    Properties

    Check: string

    Short name of the check (e.g., "Node.js version", "SQL Server connectivity").

    Message: string

    Detailed result message.

    Status: "warn" | "info" | "pass" | "fail"

    Outcome of this diagnostic check.

    SuggestedFix?: string

    Actionable fix suggestion (present for 'fail' and 'warn' statuses).

    Type: "diagnostic"

    Event type discriminator.