valhalla-wasm API
    Preparing search index...

    Interface ServerTileTrace

    Successful graph read with optional wall-clock timing.

    interface ServerTileTrace {
        elapsedMs: number | null;
        http: Record<string, string | null>;
        offset: string;
        size: string;
        tileId?: string;
        url: string;
    }

    Hierarchy

    • Omit<TileTrace, "elapsedMs">
      • ServerTileTrace
    Index
    elapsedMs: number | null

    Read wall time; null in Cloudflare.

    http: Record<string, string | null>

    Selected response headers; inaccessible or missing values are null. Cache headers may be replayed from browser cache.

    offset: string

    Requested byte offset in the object, as an exact decimal string.

    size: string

    Requested byte count, as an exact decimal string.

    tileId?: string

    Decimal GraphId for tile reads, absent for archive metadata.

    url: string

    Actual requested object URL; avoid logging traces by default.