Skip to content

Commit

Permalink
chore: refresh data using HTTP Archive 2022-01-01 (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
christobill authored Mar 15, 2022
1 parent 0675dde commit 6cc7119
Show file tree
Hide file tree
Showing 6 changed files with 10,098 additions and 10 deletions.
10,088 changes: 10,088 additions & 0 deletions data/2022-01-01-origin-scripting.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sql/all-observed-domains-query.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM (
NET.HOST(url) AS domain,
COUNT(0) AS totalOccurrences
FROM
`httparchive.requests.2021_07_01_mobile`
`httparchive.requests.2022_01_01_mobile`
GROUP BY
page,
domain
Expand Down
4 changes: 2 additions & 2 deletions sql/entity-per-page.sql
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ FROM (
url AS page,
report
FROM
`httparchive.lighthouse.2021_07_01_mobile`
`httparchive.lighthouse.2022_01_01_mobile`
),
UNNEST(JSON_QUERY_ARRAY(report,
'$.audits.bootup-time.details.items')) AS bootupTimeItems
INNER JOIN
`lighthouse-infrastructure.third_party_web.2021_07_01`
`lighthouse-infrastructure.third_party_web.2022_01_01`
ON NET.HOST(JSON_VALUE(bootupTimeItems, "$.url")) = domain
)
WHERE canonicalDomain IS NOT NULL
Expand Down
4 changes: 2 additions & 2 deletions sql/origin-query.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ FROM (
url AS page,
report
FROM
`httparchive.lighthouse.2021_07_01_mobile`
`httparchive.lighthouse.2022_01_01_mobile`
),
UNNEST(JSON_QUERY_ARRAY(report,
'$.audits.bootup-time.details.items')) AS bootupTimeItems
INNER JOIN
`lighthouse-infrastructure.third_party_web.2021_07_01`
`lighthouse-infrastructure.third_party_web.2022_01_01`
ON
NET.HOST(JSON_VALUE(bootupTimeItems,
"$.url")) = domain
Expand Down
2 changes: 1 addition & 1 deletion www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"third-party-web": "^0.12.4"
"third-party-web": "^0.13.0"
},
"devDependencies": {
"prettier": "^1.17.0"
Expand Down
8 changes: 4 additions & 4 deletions www/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13618,10 +13618,10 @@ [email protected], text-table@^0.2.0:
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=

third-party-web@^0.12.4:
version "0.12.4"
resolved "https://registry.yarnpkg.com/third-party-web/-/third-party-web-0.12.4.tgz#e189d97e6e86c42b470e96b9c46719cd906ccb64"
integrity sha512-SaJdgPjCus/5ftexuCk8wJnYwe/nW9ZNDcWZc/dq90SREN6PvFEUva+kgaPZfT8opLDHvjJVAG9mNVvMnHeVgw==
third-party-web@^0.13.0:
version "0.13.0"
resolved "https://registry.yarnpkg.com/third-party-web/-/third-party-web-0.13.0.tgz#24912230c4232be324f472aa643285ceac048678"
integrity sha512-JkGRUoRWCjv7OH+VwM4VSxvx+85WXRWkvhrrP+UuQR+NCfwClx4yUjjZrqJ2aLPdyF7PVRivr65+umMLkRSrig==

through2@^2.0.1:
version "2.0.5"
Expand Down

0 comments on commit 6cc7119

Please sign in to comment.