prorm API Reference
    Preparing search index...

    Interface GraylogStoreOptions

    Connection options for GraylogStore.

    interface GraylogStoreOptions {
        baseURL?: string;
        client?: GraylogHttpClient;
        headers?: Record<string, string>;
    }
    Index
    baseURL?: string

    Base URL of the Graylog REST API. Defaults to http://localhost:9000.

    client?: GraylogHttpClient

    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 (e.g. Authorization) sent with every request.