prorm API Reference
    Preparing search index...

    Interface LokiStoreOptions

    Connection options for LokiStore.

    interface LokiStoreOptions {
        baseURL?: string;
        client?: LokiHttpClient;
        headers?: Record<string, string>;
        tenantID?: string;
    }
    Index
    baseURL?: string

    Base URL of the Loki server. Defaults to http://localhost:3100.

    client?: LokiHttpClient

    Optional pre-built HTTP client. When provided it is used verbatim and baseURL is ignored; otherwise an internal fetch-based client is built against baseURL on connect().

    headers?: Record<string, string>

    Extra HTTP headers sent with every internal-client request.

    tenantID?: string

    Optional tenant ID sent as the X-Scope-OrgID header.