Skip to main content

CRUX Domain Summary

This report shows CrUX metrics for a primary domain and other discovered domains from a crawl. It includes key metrics like CLS, FCP, INP, LCP, and TTFB, with URLs Count reflecting the number of URLs crawled per each domain. The trend graphs display weighted averages across domains, with domains with more URLs contributing more to the overall averages.

Priority: None

Impact: Neutral

How to fetch the data for this report template

You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:

query GetReportStatForCrawl(
$crawlId: ObjectID!
$reportTemplateCode: String!
$after: String
) {
getReportStat(
input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode}
) {
crawlOrigins(after: $after, reportType: Basic) {
nodes {
origin
urlsCount
cruxCls
cruxFcp
cruxItnp
cruxLcp
cruxTtfb
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}

Try in explorer