prorm API Reference
    Preparing search index...

    Interface VictoriaMetricsStoreOptions

    Connection options for VictoriaMetricsStore.

    interface VictoriaMetricsStoreOptions {
        baseURL?: string;
        client?: VictoriaMetricsHttpClient;
        headers?: Record<string, string>;
    }
    Index
    baseURL?: string

    Base URL of the VictoriaMetrics server. Defaults to http://localhost:8428.

    client?: VictoriaMetricsHttpClient

    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.