Lightcap commited on
Commit
d2ec507
·
verified ·
1 Parent(s): efd0f7b

Add Cloudflare analytics snapshot

Browse files
README.md ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: Cloudflare Domain Traffic Analytics Snapshot
4
+ language:
5
+ - en
6
+ tags:
7
+ - tabular
8
+ - time-series
9
+ - web-analytics
10
+ - cloudflare
11
+ - dns
12
+ - cdn
13
+ - cybersecurity
14
+ - traffic-analysis
15
+ - anomaly-detection
16
+ - seo
17
+ - parquet
18
+ - duckdb
19
+ - pandas
20
+ - polars
21
+ configs:
22
+ - config_name: accounts
23
+ data_files:
24
+ - split: train
25
+ path: data/accounts.parquet
26
+ - config_name: api_errors
27
+ data_files:
28
+ - split: train
29
+ path: data/api_errors.parquet
30
+ - config_name: data_dictionary
31
+ data_files:
32
+ - split: train
33
+ path: data/data_dictionary.parquet
34
+ - config_name: dns_records
35
+ data_files:
36
+ - split: train
37
+ path: data/dns_records.parquet
38
+ - config_name: email_routing_rules
39
+ data_files:
40
+ - split: train
41
+ path: data/email_routing_rules.parquet
42
+ - config_name: firewall_events
43
+ data_files:
44
+ - split: train
45
+ path: data/firewall_events.parquet
46
+ - config_name: http_daily
47
+ data_files:
48
+ - split: train
49
+ path: data/http_daily.parquet
50
+ - config_name: metric_availability
51
+ data_files:
52
+ - split: train
53
+ path: data/metric_availability.parquet
54
+ - config_name: redirect_list_items
55
+ data_files:
56
+ - split: train
57
+ path: data/redirect_list_items.parquet
58
+ - config_name: redirect_lists
59
+ data_files:
60
+ - split: train
61
+ path: data/redirect_lists.parquet
62
+ - config_name: speed_availability
63
+ data_files:
64
+ - split: train
65
+ path: data/speed_availability.parquet
66
+ - config_name: speed_pages
67
+ data_files:
68
+ - split: train
69
+ path: data/speed_pages.parquet
70
+ - config_name: ssl_certificate_packs
71
+ data_files:
72
+ - split: train
73
+ path: data/ssl_certificate_packs.parquet
74
+ - config_name: web_analytics_rules
75
+ data_files:
76
+ - split: train
77
+ path: data/web_analytics_rules.parquet
78
+ - config_name: web_analytics_sites
79
+ data_files:
80
+ - split: train
81
+ path: data/web_analytics_sites.parquet
82
+ - config_name: zone_settings
83
+ data_files:
84
+ - split: train
85
+ path: data/zone_settings.parquet
86
+ - config_name: zones
87
+ data_files:
88
+ - split: train
89
+ path: data/zones.parquet
90
+ ---
91
+
92
+ # Cloudflare Domain Traffic Analytics Snapshot
93
+
94
+ This repository is a structured snapshot of Cloudflare data across 200 zones. It combines domain inventory, redirect configuration, DNS metadata, Web Analytics setup, HTTP time series, request dimension groups, real-user page-load and Web Vitals metrics, DNS analytics, firewall aggregates, and Speed API availability into analysis-ready Parquet tables.
95
+
96
+ The collection window for traffic tables is `2026-04-01T00:00:00Z` to `2026-05-01T00:00:00Z` UTC. The snapshot was generated at `2026-05-01T00:18:53Z`.
97
+
98
+ The shape is intentionally relational: domains live in `zones`, redirects live in `redirect_list_items`, hourly and daily traffic live in `http_hourly` and `http_daily`, and high-cardinality request slices live in `http_dimension_groups`. That makes the data easy to query with DuckDB, Polars, Pandas, Spark, or `datasets.load_dataset()` without unpacking nested API responses.
99
+
100
+ ## Tables
101
+
102
+ - `accounts`: 1 rows
103
+ - `api_errors`: 18,287 rows
104
+ - `data_dictionary`: 41 rows
105
+ - `dns_records`: 288 rows
106
+ - `email_routing_rules`: 201 rows
107
+ - `firewall_events`: 947 rows
108
+ - `http_daily`: 5,962 rows
109
+ - `metric_availability`: 6 rows
110
+ - `redirect_list_items`: 100 rows
111
+ - `redirect_lists`: 1 rows
112
+ - `speed_availability`: 200 rows
113
+ - `speed_pages`: 1 rows
114
+ - `ssl_certificate_packs`: 200 rows
115
+ - `web_analytics_rules`: 12 rows
116
+ - `web_analytics_sites`: 12 rows
117
+ - `zone_settings`: 11,200 rows
118
+ - `zones`: 200 rows
119
+
120
+ `schema/data_dictionary.json` mirrors the table descriptions and important column notes. `metadata/collection_manifest.json` records the collection window, Cloudflare API surfaces, limits, and redaction boundary.
121
+
122
+ ## Quick Start
123
+
124
+ ```python
125
+ from datasets import load_dataset
126
+
127
+ hourly = load_dataset("Lightcap/cloudflare-domain-traffic-analytics", "http_hourly", split="train")
128
+ paths = load_dataset("Lightcap/cloudflare-domain-traffic-analytics", "http_dimension_groups", split="train")
129
+ zones = load_dataset("Lightcap/cloudflare-domain-traffic-analytics", "zones", split="train")
130
+ ```
131
+
132
+ ```sql
133
+ -- DuckDB example after cloning the repo or downloading files
134
+ SELECT
135
+ zone_name,
136
+ date_trunc('day', CAST(datetime_hour AS TIMESTAMP)) AS day,
137
+ sum(requests) AS requests,
138
+ max(unique_visitors) AS hourly_unique_peak
139
+ FROM 'data/http_hourly.parquet'
140
+ GROUP BY 1, 2
141
+ ORDER BY requests DESC;
142
+ ```
143
+
144
+ ## Notes
145
+
146
+ - Cloudflare exposes aggregate visitor metrics here, not person-level sessions. `unique_visitors` is the Cloudflare `uniq.uniques` value for the chosen interval.
147
+ - RUM performance tables include page-load and rendering timings. They do not represent how long a visitor stayed on a page.
148
+ - Returning visitors, dwell time, bounce rate, and exit pages are not published as direct Cloudflare metrics in this export. `metric_availability` records those gaps explicitly instead of filling them with estimates.
149
+ - Full client IPs, full user-agent strings, query strings, session hashes, and hidden proxied DNS origins are excluded from the public files.
150
+ - Proxied DNS record content is represented by a stable SHA-256 hash. Public redirect targets remain visible because they are part of the observable redirect graph.
151
+ - Rows with `is_limit_boundary = true` reached the configured Cloudflare API limit for that grouping and should be treated as potentially truncated.
152
+
153
+ Cloudflare references: [GraphQL Analytics API](https://developers.cloudflare.com/analytics/graphql-api/), [Web Analytics metrics](https://developers.cloudflare.com/web-analytics/data-metrics/).
154
+
155
+ ## Suggested Analyses
156
+
157
+ Traffic seasonality, bot-heavy domains, redirect concentration, anomaly detection, domain portfolio routing, DNS hygiene, cache behavior, country/ASN distribution, status-code drift, and launch-date inference from first observed traffic all work directly from the published tables.
data/accounts.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5206faef160c94df9ce44c39ed4b2050d2d716ad2e1c9b586ebd07f34bbbfea
3
+ size 7645
data/api_errors.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17b721020888d8a4cc48a1f6c947057a6f0f2a94fa0112b15f6f41135c800212
3
+ size 84080
data/data_dictionary.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6b46d93c52cc120c0aa8102d8bad0e2a4d9206779aa035c07af5b74644b946a
3
+ size 4318
data/dns_records.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f128b34674c13fef3ae44c58257822f0a7743ce4d8c696a425c59170b1a0b4e5
3
+ size 36736
data/email_routing_rules.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a99462e63e43f33f2d5e159771de750a237d0472c7c514a7e7846b03a652c938
3
+ size 21341
data/firewall_events.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd21d4819bde9ab4aeb4ebfa48cf4a862a1766b6cc7b28ba8857a4a77a18d993
3
+ size 17196
data/http_daily.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d6f0f6a8de793514b6dd8d49267584ff84da97f7d40afe77115b2ec5eef615f
3
+ size 99251
data/metric_availability.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1faeca3d70130b0e050a8794df18acb4a60c2c742fea91f9814198311cf3cecd
3
+ size 5655
data/redirect_list_items.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ffc1581e71b4a69e8a4df5fe72dcdab070a53fd49ec8494cdfc893fbfe30270
3
+ size 14617
data/redirect_lists.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d440371dc20bee18eeba84394dff5f15dfc27b8c185194291a9900477239043c
3
+ size 7318
data/speed_availability.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8403d32f75038cad4f1691e230f06f3e6f4af667cc2f1d3b2b09a3d546c5dbf
3
+ size 17101
data/speed_pages.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:812d2a882bac0b7ceffa892c4fe264b8d4cf32580a113f4ece32c276e796335f
3
+ size 8769
data/ssl_certificate_packs.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2710a89939e2e6d4db21649a0d9558f9d0bf5b5f0ee6f55c1fb11bab214c8d35
3
+ size 22155
data/web_analytics_rules.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:502c2be60dd7bf58aee77459618009d89bd654fd89e1811892edb598f9a95156
3
+ size 10530
data/web_analytics_sites.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f79c7f337b127f10681b4df1c95c18230bcf7feed199777fd80aca9802203bb
3
+ size 10719
data/zone_settings.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9340e7ce603d233b2413f1121a0ec79fb79e0cabbb9d4af33514bead12bfe805
3
+ size 16920
data/zones.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17755d30cd65662fecce7e4583fe3356718cbe6d3bb69212659c256dcffa3fc6
3
+ size 28190
metadata/collection_manifest.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "analytics_window": {
3
+ "days_requested": 30,
4
+ "end_utc": "2026-05-01T00:00:00Z",
5
+ "start_utc": "2026-04-01T00:00:00Z"
6
+ },
7
+ "api_limits": {
8
+ "adaptive_dimension_group_limit": 1000,
9
+ "dns_analytics_group_limit": 1000,
10
+ "firewall_group_limit": 1000,
11
+ "rum_group_limit": 5000
12
+ },
13
+ "generated_at_utc": "2026-05-01T00:18:53Z",
14
+ "privacy_boundary": {
15
+ "excluded_public_fields": [
16
+ "clientIP",
17
+ "clientRequestQuery",
18
+ "clientRequestReferer",
19
+ "userAgent",
20
+ "sessionIdHash",
21
+ "proxied DNS origin content",
22
+ "raw Cloudflare account names",
23
+ "Cloudflare Web Analytics site tokens"
24
+ ],
25
+ "rationale": "The Hugging Face repository is public. Visitor identifiers and hidden infrastructure endpoints are not required for aggregate analytics and would create avoidable privacy/security risk."
26
+ },
27
+ "source_surfaces": [
28
+ "REST /accounts",
29
+ "REST /zones",
30
+ "REST /zones/{zone_id}/dns_records",
31
+ "REST /zones/{zone_id}/settings",
32
+ "REST /zones/{zone_id}/pagerules",
33
+ "REST /zones/{zone_id}/rulesets",
34
+ "REST /zones/{zone_id}/workers/routes",
35
+ "REST /zones/{zone_id}/ssl/certificate_packs",
36
+ "REST /zones/{zone_id}/email/routing/rules",
37
+ "REST /zones/{zone_id}/speed_api/pages",
38
+ "REST /zones/{zone_id}/speed_api/availabilities",
39
+ "REST /accounts/{account_id}/rum/site_info/list",
40
+ "REST /accounts/{account_id}/rulesets",
41
+ "REST /accounts/{account_id}/rules/lists",
42
+ "GraphQL httpRequests1dGroups",
43
+ "GraphQL httpRequests1hGroups",
44
+ "GraphQL httpRequestsAdaptiveGroups",
45
+ "GraphQL dnsAnalyticsAdaptiveGroups",
46
+ "GraphQL firewallEventsAdaptiveGroups",
47
+ "GraphQL rumPageloadEventsAdaptiveGroups",
48
+ "GraphQL rumPerformanceEventsAdaptiveGroups",
49
+ "GraphQL rumWebVitalsEventsAdaptiveGroups"
50
+ ],
51
+ "table_counts": {
52
+ "accounts": 1,
53
+ "api_errors": 18287,
54
+ "data_dictionary": 41,
55
+ "dns_records": 288,
56
+ "email_routing_rules": 201,
57
+ "firewall_events": 947,
58
+ "http_daily": 5962,
59
+ "metric_availability": 6,
60
+ "redirect_list_items": 100,
61
+ "redirect_lists": 1,
62
+ "speed_availability": 200,
63
+ "speed_pages": 1,
64
+ "ssl_certificate_packs": 200,
65
+ "web_analytics_rules": 12,
66
+ "web_analytics_sites": 12,
67
+ "zone_settings": 11200,
68
+ "zones": 200
69
+ }
70
+ }
schema/data_dictionary.json ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "column_name": "*",
4
+ "description": "One row per Cloudflare zone/domain with lifecycle, plan, and nameserver metadata.",
5
+ "table_name": "zones"
6
+ },
7
+ {
8
+ "column_name": "*",
9
+ "description": "Cloudflare account-level metadata with account names hashed.",
10
+ "table_name": "accounts"
11
+ },
12
+ {
13
+ "column_name": "*",
14
+ "description": "Sanitized DNS record inventory. Proxied record content is hashed, not published.",
15
+ "table_name": "dns_records"
16
+ },
17
+ {
18
+ "column_name": "*",
19
+ "description": "Cloudflare zone settings as key/value JSON.",
20
+ "table_name": "zone_settings"
21
+ },
22
+ {
23
+ "column_name": "*",
24
+ "description": "Account and zone ruleset metadata.",
25
+ "table_name": "rulesets"
26
+ },
27
+ {
28
+ "column_name": "*",
29
+ "description": "Ruleset rule rows, including redirect parameters where present.",
30
+ "table_name": "ruleset_rules"
31
+ },
32
+ {
33
+ "column_name": "*",
34
+ "description": "Legacy page rules.",
35
+ "table_name": "page_rules"
36
+ },
37
+ {
38
+ "column_name": "*",
39
+ "description": "Account-level bulk redirect list metadata.",
40
+ "table_name": "redirect_lists"
41
+ },
42
+ {
43
+ "column_name": "*",
44
+ "description": "Bulk redirect source and target URL rows.",
45
+ "table_name": "redirect_list_items"
46
+ },
47
+ {
48
+ "column_name": "*",
49
+ "description": "Cloudflare Web Analytics site installations with tokens hashed.",
50
+ "table_name": "web_analytics_sites"
51
+ },
52
+ {
53
+ "column_name": "*",
54
+ "description": "Cloudflare Web Analytics include/exclude rules by host/path.",
55
+ "table_name": "web_analytics_rules"
56
+ },
57
+ {
58
+ "column_name": "*",
59
+ "description": "Daily HTTP aggregate metrics with Cloudflare unique visitor counts.",
60
+ "table_name": "http_daily"
61
+ },
62
+ {
63
+ "column_name": "*",
64
+ "description": "Hourly HTTP aggregate metrics with Cloudflare unique visitor counts.",
65
+ "table_name": "http_hourly"
66
+ },
67
+ {
68
+ "column_name": "*",
69
+ "description": "Hourly request/byte/threat breakdown by Cloudflare country dimension.",
70
+ "table_name": "http_hourly_country_map"
71
+ },
72
+ {
73
+ "column_name": "*",
74
+ "description": "Hourly request breakdown by edge response status.",
75
+ "table_name": "http_hourly_status_map"
76
+ },
77
+ {
78
+ "column_name": "*",
79
+ "description": "Hourly request/byte breakdown by response content type.",
80
+ "table_name": "http_hourly_content_type_map"
81
+ },
82
+ {
83
+ "column_name": "*",
84
+ "description": "Hourly request breakdown by client SSL protocol.",
85
+ "table_name": "http_hourly_ssl_map"
86
+ },
87
+ {
88
+ "column_name": "*",
89
+ "description": "Hourly request breakdown by HTTP protocol.",
90
+ "table_name": "http_hourly_http_version_map"
91
+ },
92
+ {
93
+ "column_name": "*",
94
+ "description": "Hourly request breakdown by Cloudflare IP class.",
95
+ "table_name": "http_hourly_ip_class_map"
96
+ },
97
+ {
98
+ "column_name": "*",
99
+ "description": "Hourly page-view breakdown by browser family.",
100
+ "table_name": "http_hourly_browser_map"
101
+ },
102
+ {
103
+ "column_name": "*",
104
+ "description": "Hourly request breakdown by threat pathing category.",
105
+ "table_name": "http_hourly_threat_pathing_map"
106
+ },
107
+ {
108
+ "column_name": "*",
109
+ "description": "Daily adaptive HTTP aggregate groups by path, host, country, device, status, referrer host, ASN, bot, security, protocol, and colo dimensions.",
110
+ "table_name": "http_dimension_groups"
111
+ },
112
+ {
113
+ "column_name": "*",
114
+ "description": "Daily DNS analytics groups, when enabled for the zone.",
115
+ "table_name": "dns_analytics"
116
+ },
117
+ {
118
+ "column_name": "*",
119
+ "description": "Daily firewall event aggregate groups, when accessible.",
120
+ "table_name": "firewall_events"
121
+ },
122
+ {
123
+ "column_name": "*",
124
+ "description": "Cloudflare Web Analytics RUM page-load groups by page, referrer, device, country, browser, OS, and navigation type.",
125
+ "table_name": "rum_pageload_groups"
126
+ },
127
+ {
128
+ "column_name": "*",
129
+ "description": "Cloudflare Web Analytics real-user page-load timing groups with average and percentile timing metrics.",
130
+ "table_name": "rum_performance_groups"
131
+ },
132
+ {
133
+ "column_name": "*",
134
+ "description": "Cloudflare Web Analytics Core Web Vitals groups with average and percentile LCP, INP/FID, CLS, FCP, and TTFB metrics.",
135
+ "table_name": "rum_web_vitals_groups"
136
+ },
137
+ {
138
+ "column_name": "*",
139
+ "description": "Cloudflare Speed API page test definitions, when configured.",
140
+ "table_name": "speed_pages"
141
+ },
142
+ {
143
+ "column_name": "*",
144
+ "description": "Cloudflare Speed API quota and test-region availability.",
145
+ "table_name": "speed_availability"
146
+ },
147
+ {
148
+ "column_name": "*",
149
+ "description": "Probe results for high-value Cloudflare metrics that may be plan-limited.",
150
+ "table_name": "metric_availability"
151
+ },
152
+ {
153
+ "column_name": "*",
154
+ "description": "API surfaces that were unavailable or permission/plan limited during collection.",
155
+ "table_name": "api_errors"
156
+ },
157
+ {
158
+ "column_name": "unique_visitors",
159
+ "description": "Cloudflare uniq.uniques from httpRequests1dGroups; this is not a person-level visitor table.",
160
+ "table_name": "http_daily"
161
+ },
162
+ {
163
+ "column_name": "unique_visitors",
164
+ "description": "Cloudflare uniq.uniques from httpRequests1hGroups for the hour.",
165
+ "table_name": "http_hourly"
166
+ },
167
+ {
168
+ "column_name": "is_limit_boundary",
169
+ "description": "True means row count reached the requested API limit, so the group may be truncated.",
170
+ "table_name": "http_dimension_groups"
171
+ },
172
+ {
173
+ "column_name": "content_public",
174
+ "description": "DNS content only when the record is not proxied by Cloudflare.",
175
+ "table_name": "dns_records"
176
+ },
177
+ {
178
+ "column_name": "content_hash",
179
+ "description": "Stable SHA-256 hash of DNS content for joins without exposing proxied origins.",
180
+ "table_name": "dns_records"
181
+ },
182
+ {
183
+ "column_name": "site_token_hash",
184
+ "description": "Stable SHA-256 hash of the Cloudflare Web Analytics token.",
185
+ "table_name": "web_analytics_sites"
186
+ },
187
+ {
188
+ "column_name": "visits",
189
+ "description": "Cloudflare Web Analytics visit count for the grouped page-load events.",
190
+ "table_name": "rum_pageload_groups"
191
+ },
192
+ {
193
+ "column_name": "page_load_time_avg",
194
+ "description": "Average real-user page load time from Cloudflare RUM. This is load duration, not time spent on page.",
195
+ "table_name": "rum_performance_groups"
196
+ },
197
+ {
198
+ "column_name": "largest_contentful_paint_p75",
199
+ "description": "75th percentile Largest Contentful Paint for the group.",
200
+ "table_name": "rum_web_vitals_groups"
201
+ },
202
+ {
203
+ "column_name": "target_url",
204
+ "description": "Target URL from Cloudflare bulk redirects.",
205
+ "table_name": "redirect_list_items"
206
+ }
207
+ ]