valhalla-browser API
    Preparing search index...

    Interface StartupResult

    Module and graph initialization measurements; times are milliseconds.

    interface StartupResult {
        configSha256: string;
        graphStartupBytes: number;
        graphStartupMs: number;
        graphStartupRequests: number;
        loader: LoaderMetrics;
        memoryBudgetBytes: number;
        moduleStartupMs: number;
        native: NativeStats;
        release: string;
        workerReadyMs: number;
    }
    Index
    configSha256: string

    SHA-256 of the validated runtime configuration bytes.

    graphStartupBytes: number

    Validated startup body bytes, including manifest/config and loader metadata.

    graphStartupMs: number

    JSON metadata download/validation plus native graph-reader initialization time.

    graphStartupRequests: number

    Fetch attempts during startup, including manifest/config and loader metadata attempts.

    Loader counters sampled at startup completion.

    memoryBudgetBytes: number

    Effective retained decoded-tile cache budget in bytes.

    moduleStartupMs: number

    WASM loading/compilation/instantiation time inside the worker.

    native: NativeStats

    Native identity and memory counters sampled at startup completion.

    release: string

    Immutable dataset release ID.

    workerReadyMs: number

    Main-thread elapsed time until the worker and graph are ready, including worker loading.