httparchive.org
httparchive.org copied to clipboard
The HTTP Archive website hosted on App Engine
For example, the resource URL in the following query appears 270 times in the August 2021 crawl, but has 90 distinct response sizes: ```sql SELECT respSize, COUNT(0) AS req FROM...
Allow users to build a custom report/dashboard for themselves by passing metric IDs into the URL, like `https://httparchive.org/reports/custom?metrics=bytesImg,hreflang,asyncClipboardRead`.
See https://developers.google.com/publisher-ads-audits Is it possible to enable these audits in the HA tests? cc @brendankenny @pmeenan
https://httparchive.org/reports/loading-speed This report is based on HTTP Archive's synthetic monitoring of the following performance metrics: - First Contentful Paint - Time to Interactive - First CPU Idle - DOMContentLoaded -...
https://opencollective.com/httparchive
In the March 2021 `requests` table, about 7% of fonts are missing the `_font_details` property. ```sql SELECT COUNTIF(JSON_EXTRACT(payload, '$._font_details') IS NULL) AS null_font_details, COUNT(0) AS all_fonts, COUNTIF(JSON_EXTRACT(payload, '$._font_details') IS NULL)...
I'm not quite sure where this bug belongs but I discovered that a very few of the tests in November 2020 contain duplicate test ids. ``` 201112_Dx0_59 , 201112_Dx0_9R ,...
Many useful metrics and data points – Core Web Vitals, frameworks used etc – are only available in the HAR data. Can the summary tables be expanded to include some...
For pages that use a Service Worker the size of the page and number of resources it uses includes any resources that are downloaded as part of pre-populating the Service...
Rather than scheduled queries, we should synchronously generate the materialized tables at the end of each monthly crawl, similar to how we generate report JSON. https://github.com/HTTPArchive/bigquery/blob/aba1f9c6e76289ff62e053e22721ef1eb8260759/sync_csv.sh#L136-L142