prorm API Reference
    Preparing search index...

    Interface SumoLogicStoreOptions

    Connection options for SumoLogicStore.

    interface SumoLogicStoreOptions {
        apiURL?: string;
        collectorURL?: string;
        client?: SumoLogicHttpClient;
        headers?: Record<string, string>;
    }
    Index
    apiURL?: string

    Base URL for the Search Job / metadata API. Defaults to https://api.sumologic.com.

    collectorURL?: string

    Full HTTP Source collector URL that push() ingests to.

    client?: SumoLogicHttpClient

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

    headers?: Record<string, string>

    Extra HTTP headers (e.g. basic-auth Authorization) sent with every request.