blessed-components - v1.20.0
    Preparing search index...

    Interface RenderLogExplorerOptions

    Options accepted by renderLogExplorer.

    interface RenderLogExplorerOptions {
        entries: readonly LogEntry[];
        filter?: LogExplorerFilter;
        characters?: LogViewerCharacters;
        emptyText?: string;
        height: number;
        noMatchesText?: string;
        offset?: number;
        showLevel?: boolean;
        showSource?: boolean;
        showTimestamp?: boolean;
        width: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    entries: readonly LogEntry[]

    Entries to filter. Caller-owned data is never mutated.

    Search and facet filters.

    characters?: LogViewerCharacters

    Character tokens for row structure and level state.

    emptyText?: string

    Text displayed when no entries exist before filtering.

    height: number

    Maximum number of rendered rows.

    noMatchesText?: string

    Text displayed when filters hide all entries.

    offset?: number

    First rendered filtered entry index.

    showLevel?: boolean

    Whether to include level markers.

    true

    showSource?: boolean

    Whether to include source text.

    true

    showTimestamp?: boolean

    Whether to include timestamps.

    false

    width: number

    Maximum terminal-cell width of each row.