CWV
Also known as: Core Web Vitals, CWV, web performance metrics
What are Core Web Vitals?
Core Web Vitals is a set of three performance metrics defined by Google to measure the real-world experience of loading, interactivity, and visual stability on a webpage. Together, they give product and development teams a standardized way to assess whether a page feels fast and stable to the people using it.
Google incorporated core web vitals into its search ranking algorithm in 2021, making them relevant not just to engineers optimizing load times, but to anyone responsible for product performance and organic visibility.
What Does Each Core Web Vital Measure?
LCP
Full Name: Largest Contentful Paint
What it Measures: How long it takes for the largest visible element to load
Good Score: Under 2.5 seconds
INP
Full Name: Interaction to Next Paint
What it Measures: How quickly the page responds to user interactions
Good Score: Under 200ms
CLS
Full Name: Cumulative Layout Shift
What it Measures:How much visible content shifts unexpectedly during load
Good Score: Under 0.1
Each metric targets a distinct failure mode. A page can load quickly but shift layout unexpectedly, or respond to clicks slowly despite appearing loaded. Passing all three covers the full range of what users notice.
Why Do Core Web Vitals Matter Beyond SEO?
The ranking signal is real, but it's a secondary benefit. The primary value is that these metrics track problems users feel directly. A high CLS score means buttons and links move after the page loads, causing accidental clicks. A slow INP score means the interface feels unresponsive even when it visually appears ready. Users don't diagnose these issues by name, but they notice them and leave.
On mobile, the stakes are higher. Slower network conditions and less processing power amplify every performance gap, which is why CWV scores and mobile web design decisions are closely linked in practice.
How Are Core Web Vitals Scores Measured?
Google collects CWV data from real users through the Chrome User Experience Report (CrUX), making the scores a reflection of actual field conditions rather than controlled lab tests. PageSpeed Insights and Google Search Console both surface this data at the page and site level.
Lab tools like Lighthouse simulate performance under set conditions, which is useful for catching regressions during development. Field data and lab data often diverge, and both are worth tracking for different reasons.