prorm API Reference
    Preparing search index...

    Interface DruidStoreOptions

    Connection options for DruidStore.

    interface DruidStoreOptions {
        endpoint?: string;
        client?: DruidHttpClient;
        headers?: Record<string, string>;
    }
    Index
    endpoint?: string

    Base HTTP endpoint of the Druid router/broker. Defaults to http://localhost:8888.

    client?: DruidHttpClient

    Optional pre-built HTTP client. When provided it is used verbatim and endpoint is ignored; otherwise an internal fetch-based client is built against endpoint on connect(). Tests inject a mock here.

    headers?: Record<string, string>

    Extra HTTP headers sent with every internal-client request.