prorm API Reference
    Preparing search index...

    Interface SigNozStoreOptions

    Connection options for SigNozStore.

    interface SigNozStoreOptions {
        baseURL?: string;
        client?: SigNozHttpClient;
        headers?: Record<string, string>;
    }
    Index
    baseURL?: string

    Base URL of the SigNoz query service. Defaults to http://localhost:8080.

    client?: SigNozHttpClient

    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. SIGNOZ-API-KEY) sent with every request.