@edgible-team/sdk
    Preparing search index...

    Interface CollectDiagnosticsResult

    Result of a synchronous collect_diagnostics job — the typed DiagnosticsReport plus the job-level collection metadata (≡ CollectDiagnosticsOutput).

    interface CollectDiagnosticsResult {
        collectedAt: string;
        diagnostics: DiagnosticsReport;
        sizeBytes: number;
        truncated?: boolean;
    }
    Index

    Properties

    collectedAt: string
    diagnostics: DiagnosticsReport
    sizeBytes: number
    truncated?: boolean

    Present and true when the agent dropped data to satisfy maxSize.