Skip to content

Add HTTP Archive report: SEO / llms.txt adoption #237

@max-ostapenko

Description

@max-ostapenko

Query:

-- valid = TRUE means "present" or "exists"
WITH adoption AS (
  SELECT
    date,
    client,
SAFE.BOOL(custom_metrics.other.llms_txt_validation.valid) AS adoption
  FROM
    `httparchive.crawl.pages`
  WHERE
    date = '2025-07-01' AND
    is_root_page = TRUE
)

SELECT
  date,
  client,
  SAFE_DIVIDE(COUNTIF(adoption), COUNT(0)) AS pct_pages
FROM adoption
GROUP BY
  date,
  client;

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions