Core Web Vitals tools compared: field data, lab data and quick checks
Speed tools disagree constantly, and usually neither one is wrong: they are measuring different things. Field data reports what real visitors experienced; lab data reports one simulated load on one connection.
This comparison explains which tool to trust for which decision, and which fixes actually move the three Core Web Vitals on a small site.
Field data decides, lab data explains
Field data is a 28-day distribution of real loads, so it is the number to judge yourself by — but it lags, and a low-traffic page may not have enough samples to report at all.
Lab audits run instantly and tell you why a load was slow, which is what you need while fixing. Use lab output to choose a change and field data to confirm it worked weeks later.
- Judging performance: field data, 75th percentile.
- Diagnosing a specific slow load: lab audit with a throttled profile.
- Confirming a fix on a fresh page: re-run the lab audit, then wait for field data.
LCP is nearly always an image or a font
On content sites the largest element is the hero image or the first block of text waiting on a webfont. Compressing that image properly, serving it at display size, and giving fonts a fallback removes most of the delay.
Compress before upload rather than relying on the server: a browser-based compressor keeps the file local and lets you compare quality settings side by side.
CLS and INP come from layout and scripts you added
Layout shift is caused by elements without reserved space — images missing width and height, late-loading banners, embedded widgets. Reserve the box and the shift disappears.
Interaction delay is caused by long tasks on the main thread, almost always third-party scripts. Removing one analytics or chat widget usually beats every micro-optimisation you could make to your own code.
- Set explicit dimensions on every image and embed.
- Load non-essential third-party scripts after interaction, or not at all.
- Audit what each script earns you before optimising around it.
A repeatable monthly check
Pick your five most important URLs. Run a lab audit on each, note LCP and the largest asset, fix the single worst item, then re-check. Repeat next month rather than trying to perfect everything now.
Track it beside your rank and crawl checks so performance work stays proportional to the traffic it protects.
Frequently asked questions
Keep reading
Image optimisation for page speed: the practical version
Compress, resize and convert images for faster pages: which format to pick, what sizes to export, and how to check the result — all with free browser tools.
Read postFree SEO tool review: what each type is actually good for
An honest review of free SEO tool categories — meta tag, sitemap, keyword, backlink and speed tools — what each one measures reliably and where free data stops.
Read post