valhalla-wasm API
    Preparing search index...

    Interface StartupResult

    Initialization identity and measurements. Cloudflare timings are unavailable, not zero.

    interface StartupResult {
        configSha256: string;
        effectiveConfigSha256: string;
        graphStartupBytes: number;
        graphStartupMs: number | null;
        graphStartupRequests: number;
        loader: ServerLoaderMetrics;
        memoryBudgetBytes: number;
        moduleStartupMs: number | null;
        native: NativeStats;
        release: string;
        runtimeReadyMs: number | null;
        searchMemory: EffectiveSearchMemory;
        supportedCostings: readonly Costing[];
        wasmMemory: EffectiveWasmMemory;
    }
    Index
    configSha256: string

    Source config SHA-256.

    effectiveConfigSha256: string

    Effective native config SHA-256, including runtime overrides.

    graphStartupBytes: number

    Validated startup bytes.

    graphStartupMs: number | null

    Graph startup milliseconds; null in Cloudflare.

    graphStartupRequests: number

    Startup metadata/tile-loader read attempts.

    Loader counters at initialization.

    memoryBudgetBytes: number

    Retained-tile budget.

    moduleStartupMs: number | null

    WASM startup milliseconds; null in Cloudflare.

    native: NativeStats

    Native identity and memory counters.

    release: string

    Immutable dataset release.

    runtimeReadyMs: number | null

    Host readiness milliseconds; null in Cloudflare.

    searchMemory: EffectiveSearchMemory

    Resolved native label policy.

    supportedCostings: readonly Costing[]

    Profiles supported by this runtime and dataset.

    Resolved initial allocation and hard WASM growth ceiling.