Public BetaVitalSentinel is now live! Read the announcement
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);

Monitor your website performance

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