Tools / Monitoring and Observability Interview Questions
What are Core Web Vitals and why do they matter for observability?
Core Web Vitals are a set of user-experience metrics defined by Google that measure loading performance, interactivity, and visual stability. They are directly included in Google's search ranking algorithm, making them both an observability concern and a business one.
The three current Core Web Vitals are:
LCP — Largest Contentful Paint: Measures when the largest image or text block in the viewport is rendered. Good: under 2.5 seconds. Poor: over 4 seconds. LCP is affected by slow server response times, render-blocking resources, and slow image loading.
INP — Interaction to Next Paint (replaced FID in 2024): Measures the latency of all user interactions (clicks, key presses) and reports the worst-case one. Good: under 200 ms. It replaces FID (First Input Delay) because FID only measured the first interaction, missing long-running JavaScript tasks mid-session.
CLS — Cumulative Layout Shift: Measures unexpected layout shifts — content jumping around while the page loads. Good: under 0.1. CLS is caused by images without dimensions, dynamically injected content above existing content, and web fonts causing FOUT (Flash of Unstyled Text).
From an observability perspective, Core Web Vitals are RUM metrics — they must be collected from real user browsers using the Web Vitals JavaScript library or a RUM agent. They complement server-side latency metrics because a server can respond in 50 ms while LCP is still 5 seconds due to client-side rendering bottlenecks.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
