Website Performance Monitoring (Core Web Vitals Tracking)

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1262
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1171
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    874
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1094
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    831
  • image_bitrix-bitrix-24-1c_fixper_448_0.png
    Website development for FIXPER company
    851

Website Performance Monitoring (Core Web Vitals Tracking)

Core Web Vitals are three Google metrics affecting ranking: LCP (Largest Contentful Paint), INP (Interaction to Next Paint, replaced FID since March 2024), CLS (Cumulative Layout Shift). Tracking these metrics in real time from real users (RUM — Real User Monitoring) is fundamentally different from synthetic Lighthouse measurements.

Collecting Metrics with web-vitals.js

<script type="module">
import { onLCP, onINP, onCLS, onFCP, onTTFB } from
  'https://unpkg.com/web-vitals@3/dist/web-vitals.attribution.js';

function sendToAnalytics({ name, value, rating, navigationType }) {
  navigator.sendBeacon('/api/vitals', JSON.stringify({
    metric: name,
    value: Math.round(name === 'CLS' ? value * 1000 : value),
    rating,        // 'good' | 'needs-improvement' | 'poor'
    url: location.pathname,
    connection: navigator.connection?.effectiveType ?? 'unknown',
    deviceMemory: navigator.deviceMemory ?? 0,
    ts: Date.now(),
  }));
}

onLCP(sendToAnalytics);
onINP(sendToAnalytics);
onCLS(sendToAnalytics);
onFCP(sendToAnalytics);
onTTFB(sendToAnalytics);
</script>

Threshold Values

Metric Good Needs improvement Poor
LCP ≤ 2500ms 2500–4000ms > 4000ms
INP ≤ 200ms 200–500ms > 500ms
CLS ≤ 0.1 0.1–0.25 > 0.25
FCP ≤ 1800ms 1800–3000ms > 3000ms
TTFB ≤ 800ms 800–1800ms > 1800ms

Google Search Console vs RUM

Search Console shows aggregated data from 28 days on real Chrome devices. Valuable, but doesn't allow drill-down by pages or segments. Own RUM provides:

  • metrics by specific pages (/catalog/, /product/)
  • segmentation by connection type (4G vs WiFi)
  • trends by time of day
  • correlation with deploys

Ready-made Solutions

Grafana + ClickHouse — for teams with own infrastructure. Metrics written to ClickHouse (analytics DB), Grafana visualizes p75/p95 percentiles.

Sentry Performance — if Sentry already used, Web Vitals connected via @sentry/browser:

import * as Sentry from '@sentry/browser';
Sentry.init({
  dsn: 'YOUR_DSN',
  integrations: [new Sentry.BrowserTracing()],
  tracesSampleRate: 0.1,
});

Cloudflare Browser Insights — available in Pro plan, no code on site, automatically collects Web Vitals from traffic via Cloudflare.

Alerts on Degradation

Setting up notifications on metric degradation is critical after each deploy. In Grafana:

# alert rule (Grafana Alerting YAML)
- name: LCP degradation
  condition: avg(lcp_p75) > 2500
  for: 10m
  labels:
    severity: warning
  annotations:
    summary: "LCP p75 exceeded 2500ms on {{ $labels.path }}"

Timeline

Installation of web-vitals.js, endpoint for collection, basic dashboard: 1 day. Alert setup, segmentation by pages and devices: 0.5–1 day additional.