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

    Interface LogExplorerFilter

    Search and facet filters applied by LogExplorer.

    interface LogExplorerFilter {
        caseSensitive?: boolean;
        levels?: readonly LogLevel[];
        query?: string;
        sources?: readonly string[];
    }
    Index

    Properties

    caseSensitive?: boolean

    Whether query matching preserves case.

    false

    levels?: readonly LogLevel[]

    Included log levels. Empty or omitted arrays include every level.

    query?: string

    Text query matched against message, source, and level.

    sources?: readonly string[]

    Included sources. Empty or omitted arrays include every source.