Suggest an editImprove this articleRefine the answer for “What tools are used for analysis?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)**Performance analysis tools** fall into two types: online services (PageSpeed Insights, WebPageTest, GTmetrix) and devtools/CI integrations (Chrome DevTools, Lighthouse CI, Web Vitals Reporters). **Key point:** for local testing use DevTools + Lighthouse, for production use PageSpeed Insights + Web Vitals, for automation use Lighthouse CI + Web Vitals Reporter.Shown above the full answer for quick recall.Answer (EN)ImageTools for analyzing site performance fall into 2 types: **online services** and **devtools / CI integrations**. Here are the main ones: --- ### **Browser tools** - **Chrome DevTools → Performance tab** Records and visualizes page behavior (timelines, blocking, layout, paint, GC, and so on) - **Chrome DevTools → Lighthouse** Scores the site on metrics (LCP, FID, CLS, TBT, and others) and gives recommendations. - **Web Vitals Extension** Shows real metrics (LCP, CLS, FID) in real time right in the browser. --- ### **Online services** - **PageSpeed Insights** From Google. Analyzes both real user data (CrUX) and simulated performance. - **WebPageTest** Gives a very detailed picture: waterfall, filmstrip, thread blocking, TTI, visual progress, and so on. - **GTmetrix** A more visual interface for analyzing loading speed and recommendations. --- ### **Automation and CI tools** - **Lighthouse CI** Automated site audit in CI/CD. Lets you set a performance budget and fail the build on violations. - **Web Vitals Reporters** Connect to real traffic (via JS) and send metrics (LCP, FID, CLS) to analytics (for example, GA, BigQuery). - [**Sitespeed.io**](http://Sitespeed.io) An open source tool for integrating Lighthouse, WebPageTest, and analyzing large volumes of pages. --- ### **Third-party profilers / add-ons** - **Perfume.js** A JS library for collecting web vitals directly in users' browsers. - **Calibre**, **SpeedCurve**, **Treo** Paid tools for monitoring performance over time, with version comparison, alerts, and real-time metrics. --- **Conclusion:** If you are testing locally → DevTools + Lighthouse. If you are checking production → PageSpeed Insights + Web Vitals. If you are automating → Lighthouse CI + Web Vitals Reporter.For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.