LearnCompare two crawls

Guides

Compare two crawls

Confirm a migration, redesign, or fix cycle actually worked — by diffing a before crawl and an after crawl, not by trusting the deploy notes.

The problem

You shipped a migration, a redesign, or a batch of redirect fixes, and now you need proof, not a hunch, that it worked. Did the redirects you added actually take effect, or are some URLs still 404ing? Did the broken-link count go down, or just move? Did the fix cycle introduce anything new — a fresh batch of redirect chains, a missing canonical, a spike in 5xx errors nobody caught in staging? Without a "before" to hold against the "after," you're left re-reading the same live site and trusting that it looks fine.

Do it in RacingRoach

RacingRoach doesn't have a dedicated crawl-diff view today — the mechanism you actually use is simpler and just as reliable: every crawl is a single reopenable file, written in crash-safe transactions, so a finished crawl is a durable snapshot you can set aside and come back to. That means the workflow is entirely in your hands:

  1. Crawl the site before the change ships and let it finish. Keep the crawl file — don't overwrite it with the next run.
  2. Ship the migration, redesign, or fixes.
  3. Run a fresh crawl of the same site after the change is live. This is a new, separate crawl file, not a re-run of the old one.
  4. Export both crawls to CSV — the whole crawl or the specific view you care about (issues, status codes, redirects) — using the same streaming export both times, so the two exports have the same columns and the same shape.

Because each export streams from disk rather than loading a crawl into memory, this works the same way whether the site is 500 pages or 500,000 — you're never blocked from comparing large crawls just because they're large.

before vs. after — illustrative, not measured
Broken links (4xx)126 → 8
Redirect chains34 → 3
Missing canonicals12 → 0
5xx errors0 → 5 (new — worth investigating)
A worked example of what the diff should surface — the exact numbers depend entirely on your site and your export.

Interpret the results

Once you have two CSVs, the comparison itself is a handful of concrete questions, not a vague "does it look better":

Fix it — a practical workflow

The habit that makes this easy later is naming the crawl files by milestone as you go, not scrambling to remember which file was which after the fact:

Export the issue summary and the full URL list from each file to CSV, open both in a spreadsheet, and diff on URL and issue kind as above. There's no built-in comparison view to do this for you yet — the honest answer today is a spreadsheet, not an in-app report — but because both exports come from the same reopenable, crash-safe crawl format, the comparison is a five-minute spreadsheet task, not a re-crawl-and-guess exercise. Keep both crawl files around after the comparison; you'll want the "after" one as next cycle's "before."