-- Fast LCP
SELECT
origin,
SUM(lcp.density) AS FastLCP
FROM
`chrome-ux-report.all.202007`,
UNNEST(largest_contentful_paint.histogram.bin) AS lcp
WHERE
origin IN( '
https://www.canadiantire.ca')
AND lcp.start <= 2500
GROUP BY
origin
bigquery: 0.4852
data studio: 46.44%
-- Fast Desktop LCP
SELECT
origin,
SUM(lcp.density) AS FastLCP
FROM
`chrome-ux-report.all.202007`,
UNNEST(largest_contentful_paint.histogram.bin) AS lcp
WHERE
origin IN( '
https://www.canadiantire.ca')
AND lcp.start <= 2500
AND
form_factor.name = 'desktop'
GROUP BY
origin
bigquery: 0.1765
data studio: 54.78%
-- Fast FID
SELECT
origin,
SUM(fid.density) AS FastFID
FROM
`chrome-ux-report.all.202007`,
UNNEST(first_input.delay.histogram.bin) AS fid
WHERE
origin IN( '
https://www.canadiantire.ca' )
AND fid.start <=100
GROUP BY
origin
bigquery: 0.8037
data studio: 78.75%
-- Desktop Fast FID
SELECT
origin,
SUM(fid.density) AS Desktop_FastFID
FROM
`chrome-ux-report.all.202007`,
UNNEST(first_input.delay.histogram.bin) AS fid
WHERE
origin IN( '
https://www.canadiantire.ca' )
AND fid.start <=100
AND
form_factor.name = 'desktop'
GROUP BY
origin
bigquery: 0.2947
data studio: 89.15%