You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sql/2025/third-parties/consent_signal_survival_rate_through_redirects_working.sql
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ WITH pages AS (
49
49
FROM
50
50
`httparchive.crawl.pages`
51
51
WHERE
52
-
date='2025-06-01'
52
+
date='2025-07-01'
53
53
AND rank <=100000-- Expanded to top 100K sites
54
54
),
55
55
@@ -67,7 +67,7 @@ initial_consent_requests AS (
67
67
ON
68
68
r.client=p.clientANDr.page=p.page
69
69
WHERE
70
-
r.date='2025-06-01'
70
+
r.date='2025-07-01'
71
71
ANDNET.REG_DOMAIN(r.page) !=NET.REG_DOMAIN(r.url) -- Third-party only
72
72
AND REGEXP_CONTAINS(r.url, r'[?&](us_privacy|ccpa|usp_consent|uspString|uspConsent|ccpa_consent|usp|usprivacy|ccpaconsent|usp_string|gdpr|gdpr_consent|gdpr_pd|gpp|gpp_sid)=')
73
73
),
@@ -90,7 +90,7 @@ requests_with_redirects AS (
90
90
ANDicr.page=r.page
91
91
ANDicr.url=r.url
92
92
WHERE
93
-
r.date='2025-06-01'
93
+
r.date='2025-07-01'
94
94
AND JSON_EXTRACT_SCALAR(r.summary, '$.redirectUrl') IS NOT NULL
95
95
AND JSON_EXTRACT_SCALAR(r.summary, '$.redirectUrl') !=''
Copy file name to clipboardExpand all lines: sql/2025/third-parties/consent_signals_by_parameter_and_domain_optimized.sql
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ WITH pages AS (
9
9
FROM
10
10
`httparchive.crawl.pages`
11
11
WHERE
12
-
date='2025-06-01'
12
+
date='2025-07-01'
13
13
),
14
14
15
15
requests AS (
@@ -20,7 +20,7 @@ requests AS (
20
20
FROM
21
21
`httparchive.crawl.requests`
22
22
WHERE
23
-
date='2025-06-01'
23
+
date='2025-07-01'
24
24
-- Pre-filter: only process URLs that contain consent-related parameters
25
25
AND REGEXP_CONTAINS(url, r'[?&](us_privacy|ccpa|usp_consent|uspString|uspConsent|ccpa_consent|usp|usprivacy|ccpaconsent|usp_string|gdpr|gdpr_consent|gdpr_pd|gpp|gpp_sid)=')
26
26
),
@@ -122,7 +122,7 @@ totals AS (
122
122
NET.HOST(r.url) =NET.HOST(tp.domain),
123
123
UNNEST([1000, 10000, 100000, 1000000, 10000000]) AS rank_grouping
0 commit comments