Core Web Vitals

What is Web Vitals?

A set of metrics from Google designed to measure the quality of user experience on the web, including but not limited to Core Web Vitals.

Web Vitals is a Google initiative to provide unified guidance for quality signals that are essential to delivering a great user experience on the web.

Core Web Vitals vs Web Vitals

Core Web Vitals (the essential subset):

  • LCP (Largest Contentful Paint)
  • INP (Interaction to Next Paint)
  • CLS (Cumulative Layout Shift)

Other Web Vitals:

  • FCP (First Contentful Paint)
  • TTFB (Time to First Byte)
  • FID (First Input Delay) - deprecated

Why Web Vitals matter

  • User experience quantification
  • Google ranking signals
  • Industry-standard metrics
  • Clear optimization targets

Measuring Web Vitals

Field tools (real users)

  • Chrome User Experience Report
  • PageSpeed Insights (field data)
  • Real User Monitoring (RUM)

Lab tools (simulated)

  • Lighthouse
  • Chrome DevTools
  • WebPageTest

web-vitals library

Google provides a JavaScript library for measuring Web Vitals:

import {onLCP, onINP, onCLS} from 'web-vitals';

onLCP(console.log);
onINP(console.log);
onCLS(console.log);

How VitalSentinel handles this

VitalSentinel tracks Web Vitals from two angles: RUM Monitoring uses the official web-vitals library to capture LCP, INP, CLS, FCP, and TTFB from every real visit, and CrUX Monitoring pulls Google's 28-day field dataset for the same URLs. You see live regressions and the trend Google actually scores you on.

Monitor your website performance

VitalSentinel tracks Core Web Vitals and performance metrics to help you stay ahead of issues.