prorm API Reference
    Preparing search index...

    Interface SplunkStoreOptions

    Connection options for SplunkStore.

    interface SplunkStoreOptions {
        baseURL?: string;
        token?: string;
        client?: SplunkHttpClient;
        headers?: Record<string, string>;
    }
    Index
    baseURL?: string

    Base URL of the Splunk HEC/REST endpoint. Defaults to https://localhost:8088.

    token?: string

    HEC token used for ingest (Authorization: Splunk <token>).

    client?: SplunkHttpClient

    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.