Interface IssuesPanelLogPayload

Top-level shape of the JSON written to the clipboard by the Copy log button. The meta block carries enough context for an offline reader to interpret the timestamps and account for any truncation that happened during the session.

interface IssuesPanelLogPayload {
    events: LogEntry[];
    meta: {
        capacity: number;
        capturedAt: string;
        durationSeconds: number;
        entryCount: number;
        errorCount: number;
        sessionStart: string;
        skippedEvents: string[];
        sources: IssuesPanelSource[];
        truncatedCount: number;
        url: string;
        userAgent: string;
    };
}

Properties

Properties

events: LogEntry[]
meta: {
    capacity: number;
    capturedAt: string;
    durationSeconds: number;
    entryCount: number;
    errorCount: number;
    sessionStart: string;
    skippedEvents: string[];
    sources: IssuesPanelSource[];
    truncatedCount: number;
    url: string;
    userAgent: string;
}