Calculate CWV values for desktop and mobile for a given origin

24 views
Skip to first unread message

Mr. T

unread,
Sep 11, 2024, 12:16:30 PMSep 11
to Chrome UX Report (Discussions)
Hi,

How would I be able to get the CLS, INP and LCP 75th percentile values for an origin using the CRuX dataset? Would like to see how CWV's have trended over past months for a given origin.

Thanks.

Barry Pollard

unread,
Sep 11, 2024, 12:25:12 PMSep 11
to Mr. T, Chrome UX Report (Discussions)
The easiest way is with the CrUX Dashboard.

It's also possible to these monthly values from BigQuery (which underlies the CrUX dashboard) as described in this guide. A simple query for that is this:

SELECT
date,
device,
p75_lcp,
p75_cls,
p75_inp
FROM
`chrome-ux-report.materialized.device_summary`
WHERE
date >= '2024-01-01' AND
ORDER BY
date DESC,
device

And finally it's also possible to get weekly values for the past 6 months from the CrUX History API as described in this guide.

There are also many third-party tools that surface this data including treo, RUMVision, tamethebots, Calibre, and Speetals to name a few that I'm familiar with.


--
You received this message because you are subscribed to the Google Groups "Chrome UX Report (Discussions)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chrome-ux-repo...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chrome-ux-report/46b26274-c501-492f-b48e-716978cf5f88n%40chromium.org.
Reply all
Reply to author
Forward
0 new messages