Requests via CDN

How many of the page requests are served via a CDN, and which one.

Field data PhoneDesktopAll Scope All sites Q2 2026 edition · Phone field outcomes
Metric LCP INP CLS
1

At a glance the headline numbers for Requests via CDN

How many of the page requests are served via a CDN, and which one.

6
Categories
In the distribution
66.5%
Fleet share
Top: origin
Sites with any
Of origin

66.5% of requests come straight from origin servers, with no CDN in front.

The State of Web Vitals · Q2 2026 · 189,915 sites · phone field datacorewebvitals.io/state-of-cwv
2

The requests via CDN mix who uses what, and how fast each group loads

VariantShare of requestsMedian
Origin
66%
Cloudflare
22%
Fastly
6%
Cloudfront
5%
Vercel
0%
Akamai
0%

Requests via CDN. On the fleet: 66.5% origin, 22.4% cloudflare, 5.6% fastly.

Origin leads by count (66.5%) and by bytes (75.4%). computed

The State of Web Vitals · Q2 2026 · 189,915 sites · phone field datacorewebvitals.io/state-of-cwv
3

Passing LCP per bucket every category and count level at once - color is the pass rate

1
2
3
4
5
6
7
8
9
10
11
12
Origin 66.5%
87
89
88
84
81
76
72
70
70
64
64
62
Cloudflare 22.4%
78
82
83
82
77
69
70
83
89
90
92
90
Fastly 5.6%
80
84
86
91
83
80
81
90
93
94
93
83
Cloudfront 4.9%
78
82
82
84
85
86
88
88
90
88
86
79
Vercel 0.5%
80
81
84
82
77
76
82
77
57
59
80
83
Akamai 0.1%
79
79
80
85
81
74
77
74
75
68
70
← few of this category on the pagemany →
60%95%+ of sites passing LCP Faded cells: under 100 sites

Each row is a category, each column its own count bucket (few on the left, many on the right); the cell is the share of those sites passing LCP.

Origin swings the hardest: 87% of sites pass LCP with few, 62% with many. computed

The State of Web Vitals · Q2 2026 · 189,915 sites · phone field datacorewebvitals.io/state-of-cwv
4

Few vs many - does quantity cost LCP? the pass rate with few vs many of each category

60%70%80%90%100% few → many
Origin 66.5% 87%62%
Akamai 0.1% 79%70%
Cloudfront 4.9% 78%79%
Vercel 0.5% 80%82%
Fastly 5.6% 80%83%
Cloudflare 22.4% 78%90%
% of sites passing LCP · hollow ring = pages with few, solid dot = pages with many

Per category: the pass rate among pages with FEW of it (hollow ring) against pages with MANY (solid dot), worst trend first. Thin buckets are excluded from the endpoints.

More Origin costs the most: the LCP pass rate falls from 87% with few to 62% with many. computed

The State of Web Vitals · Q2 2026 · 189,915 sites · phone field datacorewebvitals.io/state-of-cwv
5

Why this matters for the Core Web Vitals, and where to start fixing it

A CDN moves your files closer to the visitor. Distance is round-trip time, and every request pays it: the connection setup, the request, the response. Serving static files from an edge node cuts that time for every image, script and stylesheet on the page, and those are the resources the LCP waits for.

The share matters more than the logo. A site that serves its HTML through a CDN but loads images from a slow origin still pays origin latency for its LCP image. Check what the CDN actually fronts, not just whether one is present.

Related signals Last-Modified present → Uncompressed text responses → Cacheable responses → HTML size (kB) → Chrome field data from 189,915 sites, representing millions of real page loads · How we measured
Live queries (2) — admin only
Query #1: 34.7 ms
SELECT 1 AS ok FROM site_metric_bags LIMIT 0;
Query #2: 345.7 ms
WITH flat AS (
                SELECT b.cat, b.n, b.size, s.crux."phone".lcp AS cwv_val
                FROM site_metric_bags b
                JOIN sites s ON s.origin = b.origin
                WHERE b.path = 'cdn.requests'
                  AND b.cat IS NOT NULL
            ),
            totals AS (
                SELECT cat,
                    SUM(n) AS fleet_n,
                    SUM(size) AS fleet_size,
                    COUNT(*) FILTER (WHERE n IS NOT NULL) AS sample,
                    COUNT(*) FILTER (WHERE n > 0) AS with_any,
                    quantile_disc(n, 0.95) AS p95,
                    COUNT(*) AS n_rows
                FROM flat
                GROUP BY cat
                HAVING COUNT(*) >= (SELECT COUNT(DISTINCT origin) FROM site_metric_bags WHERE path = 'cdn.requests') * 0.005
            ),
            widths AS (
                SELECT *,
                    GREATEST(1, CAST(round(COALESCE(p95, 0)) AS INTEGER)) AS cap,
                    LEAST(GREATEST(1, CAST(round(COALESCE(p95, 0)) AS INTEGER)), 12 - 1) AS regular_buckets
                FROM totals
            ),
            widths2 AS (
                SELECT *,
                    GREATEST(1, CAST(ceil(cap * 1.0 / regular_buckets) AS INTEGER)) AS width
                FROM widths
            ),
            binned AS (
                SELECT f.cat, f.cwv_val, w.fleet_n, w.fleet_size, w.sample, w.with_any, w.width, w.regular_buckets,
                    CASE WHEN f.n IS NULL THEN NULL
                        ELSE LEAST(CAST(FLOOR(f.n * 1.0 / w.width) AS INTEGER), w.regular_buckets)
                    END AS bucket_idx
                FROM flat f
                JOIN widths2 w ON f.cat = w.cat
            )
            SELECT cat, fleet_n, fleet_size, sample, with_any, width, regular_buckets,
                bucket_idx,
                COUNT(*) AS n,
                quantile_disc(cwv_val, 0.5) AS median,
                COUNT(*) FILTER (WHERE cwv_val IS NOT NULL) AS total_cwv,
                COUNT(*) FILTER (WHERE cwv_val IS NOT NULL AND cwv_val <= 2500) AS good
            FROM binned
            WHERE bucket_idx IS NOT NULL
            GROUP BY cat, fleet_n, fleet_size, sample, with_any, width, regular_buckets, bucket_idx
            ORDER BY cat, bucket_idx;
JSON file lookups (4)
20260625/meta.json 0.02 ms
20260625/types.json 0.45 ms
20260625/loaf-scripts.json 0.37 ms
20260625/menu.json 0.15 ms