Add Cloudflare analytics snapshot
Browse files- README.md +93 -15
- data/accounts.parquet +1 -1
- data/data_dictionary.parquet +2 -2
- data/dns_analytics.parquet +2 -2
- data/dns_records.parquet +2 -2
- data/email_routing_rules.parquet +2 -2
- data/firewall_events.parquet +2 -2
- data/http_daily.parquet +2 -2
- data/http_dimension_groups.parquet +3 -0
- data/http_hourly.parquet +3 -0
- data/http_hourly_browser_map.parquet +3 -0
- data/http_hourly_content_type_map.parquet +3 -0
- data/http_hourly_country_map.parquet +3 -0
- data/http_hourly_http_version_map.parquet +3 -0
- data/http_hourly_ip_class_map.parquet +3 -0
- data/http_hourly_ssl_map.parquet +3 -0
- data/http_hourly_status_map.parquet +3 -0
- data/http_hourly_threat_pathing_map.parquet +3 -0
- data/metric_availability.parquet +2 -2
- data/redirect_list_items.parquet +1 -1
- data/redirect_lists.parquet +1 -1
- data/ruleset_rules.parquet +2 -2
- data/rulesets.parquet +2 -2
- data/rum_pageload_groups.parquet +2 -2
- data/rum_performance_groups.parquet +2 -2
- data/rum_web_vitals_groups.parquet +3 -0
- data/speed_availability.parquet +2 -2
- data/speed_pages.parquet +1 -1
- data/ssl_certificate_packs.parquet +2 -2
- data/web_analytics_rules.parquet +1 -1
- data/web_analytics_sites.parquet +1 -1
- data/zone_settings.parquet +2 -2
- data/zones.parquet +1 -1
- metadata/cloudflare_graphql_capabilities.json +0 -0
- metadata/collection_manifest.json +0 -0
- metadata/logpush_field_catalog.json +167 -0
- schema/data_dictionary.json +11 -6
README.md
CHANGED
|
@@ -23,10 +23,6 @@ configs:
|
|
| 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
|
|
@@ -43,14 +39,66 @@ configs:
|
|
| 43 |
data_files:
|
| 44 |
- split: train
|
| 45 |
path: data/email_routing_rules.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: ruleset_rules
|
| 55 |
data_files:
|
| 56 |
- split: train
|
|
@@ -67,6 +115,10 @@ configs:
|
|
| 67 |
data_files:
|
| 68 |
- split: train
|
| 69 |
path: data/rum_performance_groups.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
- config_name: speed_availability
|
| 71 |
data_files:
|
| 72 |
- split: train
|
|
@@ -79,6 +131,14 @@ configs:
|
|
| 79 |
data_files:
|
| 80 |
- split: train
|
| 81 |
path: data/ssl_certificate_packs.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 82 |
- config_name: zone_settings
|
| 83 |
data_files:
|
| 84 |
- split: train
|
|
@@ -91,31 +151,48 @@ configs:
|
|
| 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,
|
| 95 |
|
| 96 |
-
The collection window for traffic tables is `2026-04-
|
| 97 |
|
| 98 |
Curated by Faruk Alpay. Contact: `alpay@lightcap.ai`.
|
| 99 |
|
| 100 |
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.
|
| 101 |
|
|
|
|
|
|
|
| 102 |
## Tables
|
| 103 |
|
| 104 |
- `accounts`: 1 rows
|
| 105 |
-
- `
|
| 106 |
-
- `
|
| 107 |
-
- `
|
| 108 |
-
- `
|
| 109 |
-
- `
|
| 110 |
-
- `http_daily`:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
- `metric_availability`: 6 rows
|
| 112 |
-
- `
|
| 113 |
-
- `
|
|
|
|
|
|
|
| 114 |
- `rum_pageload_groups`: 303 rows
|
| 115 |
- `rum_performance_groups`: 278 rows
|
| 116 |
-
- `
|
|
|
|
| 117 |
- `speed_pages`: 1 rows
|
| 118 |
- `ssl_certificate_packs`: 200 rows
|
|
|
|
|
|
|
| 119 |
- `zone_settings`: 11,200 rows
|
| 120 |
- `zones`: 200 rows
|
| 121 |
|
|
@@ -149,6 +226,7 @@ ORDER BY requests DESC;
|
|
| 149 |
- RUM performance tables include page-load and rendering timings. They do not represent how long a visitor stayed on a page.
|
| 150 |
- 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.
|
| 151 |
- Full client IPs, full user-agent strings, query strings, session hashes, and hidden proxied DNS origins are excluded from the public files.
|
|
|
|
| 152 |
- 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.
|
| 153 |
- Rows with `is_limit_boundary = true` reached the configured Cloudflare API limit for that grouping and should be treated as potentially truncated.
|
| 154 |
|
|
|
|
| 23 |
data_files:
|
| 24 |
- split: train
|
| 25 |
path: data/accounts.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
- config_name: data_dictionary
|
| 27 |
data_files:
|
| 28 |
- split: train
|
|
|
|
| 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: http_dimension_groups
|
| 51 |
+
data_files:
|
| 52 |
+
- split: train
|
| 53 |
+
path: data/http_dimension_groups.parquet
|
| 54 |
+
- config_name: http_hourly
|
| 55 |
+
data_files:
|
| 56 |
+
- split: train
|
| 57 |
+
path: data/http_hourly.parquet
|
| 58 |
+
- config_name: http_hourly_browser_map
|
| 59 |
+
data_files:
|
| 60 |
+
- split: train
|
| 61 |
+
path: data/http_hourly_browser_map.parquet
|
| 62 |
+
- config_name: http_hourly_content_type_map
|
| 63 |
+
data_files:
|
| 64 |
+
- split: train
|
| 65 |
+
path: data/http_hourly_content_type_map.parquet
|
| 66 |
+
- config_name: http_hourly_country_map
|
| 67 |
+
data_files:
|
| 68 |
+
- split: train
|
| 69 |
+
path: data/http_hourly_country_map.parquet
|
| 70 |
+
- config_name: http_hourly_http_version_map
|
| 71 |
+
data_files:
|
| 72 |
+
- split: train
|
| 73 |
+
path: data/http_hourly_http_version_map.parquet
|
| 74 |
+
- config_name: http_hourly_ip_class_map
|
| 75 |
+
data_files:
|
| 76 |
+
- split: train
|
| 77 |
+
path: data/http_hourly_ip_class_map.parquet
|
| 78 |
+
- config_name: http_hourly_ssl_map
|
| 79 |
+
data_files:
|
| 80 |
+
- split: train
|
| 81 |
+
path: data/http_hourly_ssl_map.parquet
|
| 82 |
+
- config_name: http_hourly_status_map
|
| 83 |
+
data_files:
|
| 84 |
+
- split: train
|
| 85 |
+
path: data/http_hourly_status_map.parquet
|
| 86 |
+
- config_name: http_hourly_threat_pathing_map
|
| 87 |
+
data_files:
|
| 88 |
+
- split: train
|
| 89 |
+
path: data/http_hourly_threat_pathing_map.parquet
|
| 90 |
- config_name: metric_availability
|
| 91 |
data_files:
|
| 92 |
- split: train
|
| 93 |
path: data/metric_availability.parquet
|
| 94 |
+
- config_name: redirect_list_items
|
| 95 |
+
data_files:
|
| 96 |
+
- split: train
|
| 97 |
+
path: data/redirect_list_items.parquet
|
| 98 |
+
- config_name: redirect_lists
|
| 99 |
+
data_files:
|
| 100 |
+
- split: train
|
| 101 |
+
path: data/redirect_lists.parquet
|
| 102 |
- config_name: ruleset_rules
|
| 103 |
data_files:
|
| 104 |
- split: train
|
|
|
|
| 115 |
data_files:
|
| 116 |
- split: train
|
| 117 |
path: data/rum_performance_groups.parquet
|
| 118 |
+
- config_name: rum_web_vitals_groups
|
| 119 |
+
data_files:
|
| 120 |
+
- split: train
|
| 121 |
+
path: data/rum_web_vitals_groups.parquet
|
| 122 |
- config_name: speed_availability
|
| 123 |
data_files:
|
| 124 |
- split: train
|
|
|
|
| 131 |
data_files:
|
| 132 |
- split: train
|
| 133 |
path: data/ssl_certificate_packs.parquet
|
| 134 |
+
- config_name: web_analytics_rules
|
| 135 |
+
data_files:
|
| 136 |
+
- split: train
|
| 137 |
+
path: data/web_analytics_rules.parquet
|
| 138 |
+
- config_name: web_analytics_sites
|
| 139 |
+
data_files:
|
| 140 |
+
- split: train
|
| 141 |
+
path: data/web_analytics_sites.parquet
|
| 142 |
- config_name: zone_settings
|
| 143 |
data_files:
|
| 144 |
- split: train
|
|
|
|
| 151 |
|
| 152 |
# Cloudflare Domain Traffic Analytics Snapshot
|
| 153 |
|
| 154 |
+
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, Speed API availability, and firewall aggregates where Cloudflare exposes them into analysis-ready Parquet tables.
|
| 155 |
|
| 156 |
+
The collection window for traffic tables is `2026-04-01T02:00:00Z` to `2026-05-01T02:00:00Z` UTC. The snapshot was generated at `2026-05-01T02:17:36Z`.
|
| 157 |
|
| 158 |
Curated by Faruk Alpay. Contact: `alpay@lightcap.ai`.
|
| 159 |
|
| 160 |
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.
|
| 161 |
|
| 162 |
+
Cloudflare GraphQL field availability is discovered per zone before querying. Unsupported firewall fields are not queried, so the public tables do not contain API failure rows; coverage and skipped field lists are recorded in `metadata/collection_manifest.json` and `metadata/cloudflare_graphql_capabilities.json`.
|
| 163 |
+
|
| 164 |
## Tables
|
| 165 |
|
| 166 |
- `accounts`: 1 rows
|
| 167 |
+
- `data_dictionary`: 42 rows
|
| 168 |
+
- `dns_analytics`: 73,645 rows
|
| 169 |
+
- `dns_records`: 288 rows
|
| 170 |
+
- `email_routing_rules`: 201 rows
|
| 171 |
+
- `firewall_events`: 67,118 rows
|
| 172 |
+
- `http_daily`: 6,070 rows
|
| 173 |
+
- `http_dimension_groups`: 156,543 rows
|
| 174 |
+
- `http_hourly`: 10,585 rows
|
| 175 |
+
- `http_hourly_browser_map`: 902 rows
|
| 176 |
+
- `http_hourly_content_type_map`: 15,173 rows
|
| 177 |
+
- `http_hourly_country_map`: 20,939 rows
|
| 178 |
+
- `http_hourly_http_version_map`: 13,196 rows
|
| 179 |
+
- `http_hourly_ip_class_map`: 13,435 rows
|
| 180 |
+
- `http_hourly_ssl_map`: 19,638 rows
|
| 181 |
+
- `http_hourly_status_map`: 17,946 rows
|
| 182 |
+
- `http_hourly_threat_pathing_map`: 34 rows
|
| 183 |
- `metric_availability`: 6 rows
|
| 184 |
+
- `redirect_list_items`: 50 rows
|
| 185 |
+
- `redirect_lists`: 1 rows
|
| 186 |
+
- `ruleset_rules`: 36,664 rows
|
| 187 |
+
- `rulesets`: 783 rows
|
| 188 |
- `rum_pageload_groups`: 303 rows
|
| 189 |
- `rum_performance_groups`: 278 rows
|
| 190 |
+
- `rum_web_vitals_groups`: 165 rows
|
| 191 |
+
- `speed_availability`: 200 rows
|
| 192 |
- `speed_pages`: 1 rows
|
| 193 |
- `ssl_certificate_packs`: 200 rows
|
| 194 |
+
- `web_analytics_rules`: 12 rows
|
| 195 |
+
- `web_analytics_sites`: 12 rows
|
| 196 |
- `zone_settings`: 11,200 rows
|
| 197 |
- `zones`: 200 rows
|
| 198 |
|
|
|
|
| 226 |
- RUM performance tables include page-load and rendering timings. They do not represent how long a visitor stayed on a page.
|
| 227 |
- 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.
|
| 228 |
- Full client IPs, full user-agent strings, query strings, session hashes, and hidden proxied DNS origins are excluded from the public files.
|
| 229 |
+
- Firewall event IPs and user agents, when available from Cloudflare, are represented as stable hashes rather than raw values.
|
| 230 |
- 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.
|
| 231 |
- Rows with `is_limit_boundary = true` reached the configured Cloudflare API limit for that grouping and should be treated as potentially truncated.
|
| 232 |
|
data/accounts.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 7645
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c5584b24e245c9d02a42c92d3d3caf206d227900c9a739459ddc70699a50a2df
|
| 3 |
size 7645
|
data/data_dictionary.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa306c760e166e86f035ba15659a49a4d9f0ba630f7740a3825e17de8a512229
|
| 3 |
+
size 4702
|
data/dns_analytics.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00b16d90825b073fc7f94177fe5d5e2e1f135597df54ef6cc9ee8659ca086967
|
| 3 |
+
size 314864
|
data/dns_records.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20634f3f023c25e076f9f56cb1fe949f8f68f1910f1a91e090f37f37f8cd6a2e
|
| 3 |
+
size 36675
|
data/email_routing_rules.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd1904c83b4a2670ae1a86c13d6b9d33276eaca2cd4ee32ba1319c40567e9cb2
|
| 3 |
+
size 21323
|
data/firewall_events.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f31904075ba60319ff73c43d846d3f54eb505997436c50acc0ddda408b0992d0
|
| 3 |
+
size 2772502
|
data/http_daily.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ecf2a687257bf5d2a8f6a0b75abf054dd6f001118d68b25f13d7ff3558f8f36d
|
| 3 |
+
size 100487
|
data/http_dimension_groups.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a075f4bff1832f46570664699de24d70ebb067e9bbc89dc31c20589a42fc024a
|
| 3 |
+
size 1209945
|
data/http_hourly.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b09077339158b5bde7e3c239542ec8a40ac39a79bcb9c1d259bbd46e27b6e8a
|
| 3 |
+
size 91675
|
data/http_hourly_browser_map.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0833decb20593b009ba765f47c682c86bb32b6575bbedb6300778b0fbb96b5d8
|
| 3 |
+
size 6111
|
data/http_hourly_content_type_map.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:154150bec3fc814adc1a670ad1abe9527054f160828598a472513565b8ceea91
|
| 3 |
+
size 65141
|
data/http_hourly_country_map.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7609784be05b947f718acb01e4873a61a663a9769f104da68318fc5ad45a7fae
|
| 3 |
+
size 94663
|
data/http_hourly_http_version_map.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd2c000000ef93d197d6d494bd15983fb7cdc45c768da849096c0f3a27bbb5d7
|
| 3 |
+
size 30077
|
data/http_hourly_ip_class_map.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d3dc40cd2e04ca11d4f35d6864aa7228cc959988c4609f6dabf6a095a5944a4
|
| 3 |
+
size 31443
|
data/http_hourly_ssl_map.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32eb8be6c15775959a258e401fb9a083e7d7dd7ccde6631bd35cce991488b443
|
| 3 |
+
size 36041
|
data/http_hourly_status_map.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c8bc3fee0365415eb28c156184ae09706d2f85d67e07ee5b4938f1f9bdc7d5e
|
| 3 |
+
size 38046
|
data/http_hourly_threat_pathing_map.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3fd7cece63f9ec07c25d919594f776161f3468bb6a856806e64b793c202cbef
|
| 3 |
+
size 4950
|
data/metric_availability.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a79a13dab1f7b790314186f8531ccc5ff2ee1119406cef608a7effe10e37222
|
| 3 |
+
size 5655
|
data/redirect_list_items.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 12861
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1eb569da6e9799655a7dd72763807913884763c7220600b9b4108fe429c312be
|
| 3 |
size 12861
|
data/redirect_lists.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 7318
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ccb5d283ce7f923343863411436d6b0455af1b4174d04d24db7791389bec3b9
|
| 3 |
size 7318
|
data/ruleset_rules.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7c2ba859761786881021e5fd034e5a13d0712f88ff2e8ee42eda0bca3b7b290
|
| 3 |
+
size 105313
|
data/rulesets.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12dbe38669520ea5e00f6f393233287118f6f449f9a48b6731f7545456537283
|
| 3 |
+
size 22287
|
data/rum_pageload_groups.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:270b8636f2af5cfd62485242c996e26abaf2dec5b36f360aa6104b34d9aa219b
|
| 3 |
+
size 19385
|
data/rum_performance_groups.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4261fd3ea78a420cffd26889f04ef2f1872664650d2865aa3eccff133c3505fd
|
| 3 |
+
size 54526
|
data/rum_web_vitals_groups.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62d51dac3ecc74b22e67fe1fd89ca06a455ab79fb6b175304bd6fa145920103a
|
| 3 |
+
size 60371
|
data/speed_availability.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99e2f3ae4fa87e64d485e88d103ec4b748deed44f8ed5b31b500188ff63941f0
|
| 3 |
+
size 17085
|
data/speed_pages.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 8769
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5a3120ae58352b7fbfcd1413f091d7541513a8d1315dc33c3927e4571c9f818
|
| 3 |
size 8769
|
data/ssl_certificate_packs.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d155aa93953d9b0bf25f6ac38fe262d61200f8c7dd265130821299b96c662432
|
| 3 |
+
size 22137
|
data/web_analytics_rules.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 10530
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4df1095c8e3c0e56a05c43518002850715f2d8bf34ba4ae6cc36b91c2843f05
|
| 3 |
size 10530
|
data/web_analytics_sites.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 10719
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6aea8f8ea37c2ab06f639573eb6c45fb2e814afc458ba35af3cf9b52ba75212
|
| 3 |
size 10719
|
data/zone_settings.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f43f616f93315cd92312482adf5323b9c8cd267e592e3ba8343cc1b8e144d4cd
|
| 3 |
+
size 16883
|
data/zones.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 28190
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfc4d7707737b36ee343f55e0e42a1d683c8c21042380b7772b2bc8793b26fe7
|
| 3 |
size 28190
|
metadata/cloudflare_graphql_capabilities.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
metadata/collection_manifest.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
metadata/logpush_field_catalog.json
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"collected_at": "2026-05-01T02:17:36Z",
|
| 4 |
+
"dataset": "http_requests",
|
| 5 |
+
"field_count": 103,
|
| 6 |
+
"fields": [
|
| 7 |
+
"AISecurityInjectionScore",
|
| 8 |
+
"AISecurityPIICategories",
|
| 9 |
+
"AISecurityTokenCount",
|
| 10 |
+
"AISecurityUnsafeTopicCategories",
|
| 11 |
+
"CacheCacheStatus",
|
| 12 |
+
"CacheReserveUsed",
|
| 13 |
+
"CacheResponseBytes",
|
| 14 |
+
"CacheResponseStatus",
|
| 15 |
+
"CacheTieredFill",
|
| 16 |
+
"ClientASN",
|
| 17 |
+
"ClientCity",
|
| 18 |
+
"ClientCountry",
|
| 19 |
+
"ClientDeviceType",
|
| 20 |
+
"ClientIP",
|
| 21 |
+
"ClientIPClass",
|
| 22 |
+
"ClientLatitude",
|
| 23 |
+
"ClientLongitude",
|
| 24 |
+
"ClientMTLSAuthCertFingerprint",
|
| 25 |
+
"ClientMTLSAuthStatus",
|
| 26 |
+
"ClientRegionCode",
|
| 27 |
+
"ClientRequestBytes",
|
| 28 |
+
"ClientRequestHost",
|
| 29 |
+
"ClientRequestMethod",
|
| 30 |
+
"ClientRequestPath",
|
| 31 |
+
"ClientRequestProtocol",
|
| 32 |
+
"ClientRequestReferer",
|
| 33 |
+
"ClientRequestScheme",
|
| 34 |
+
"ClientRequestSource",
|
| 35 |
+
"ClientRequestURI",
|
| 36 |
+
"ClientRequestUserAgent",
|
| 37 |
+
"ClientSSLCipher",
|
| 38 |
+
"ClientSSLProtocol",
|
| 39 |
+
"ClientSrcPort",
|
| 40 |
+
"ClientTCPRTTMs",
|
| 41 |
+
"ClientXRequestedWith",
|
| 42 |
+
"ContentScanObjResults",
|
| 43 |
+
"ContentScanObjSizes",
|
| 44 |
+
"ContentScanObjTypes",
|
| 45 |
+
"Cookies",
|
| 46 |
+
"EdgeCFConnectingO2O",
|
| 47 |
+
"EdgeColoCode",
|
| 48 |
+
"EdgeColoID",
|
| 49 |
+
"EdgeEndTimestamp",
|
| 50 |
+
"EdgePathingOp",
|
| 51 |
+
"EdgePathingSrc",
|
| 52 |
+
"EdgePathingStatus",
|
| 53 |
+
"EdgeRequestHost",
|
| 54 |
+
"EdgeResponseBodyBytes",
|
| 55 |
+
"EdgeResponseBytes",
|
| 56 |
+
"EdgeResponseCompressionRatio",
|
| 57 |
+
"EdgeResponseContentType",
|
| 58 |
+
"EdgeResponseStatus",
|
| 59 |
+
"EdgeServerIP",
|
| 60 |
+
"EdgeStartTimestamp",
|
| 61 |
+
"EdgeTimeToFirstByteMs",
|
| 62 |
+
"FirewallForAIInjectionScore",
|
| 63 |
+
"FirewallForAIPIICategories",
|
| 64 |
+
"FirewallForAITokenCount",
|
| 65 |
+
"FirewallForAIUnsafeTopicCategories",
|
| 66 |
+
"LeakedCredentialCheckResult",
|
| 67 |
+
"OriginDNSResponseTimeMs",
|
| 68 |
+
"OriginIP",
|
| 69 |
+
"OriginRequestHeaderSendDurationMs",
|
| 70 |
+
"OriginResponseBytes",
|
| 71 |
+
"OriginResponseDurationMs",
|
| 72 |
+
"OriginResponseHTTPExpires",
|
| 73 |
+
"OriginResponseHTTPLastModified",
|
| 74 |
+
"OriginResponseHeaderReceiveDurationMs",
|
| 75 |
+
"OriginResponseStatus",
|
| 76 |
+
"OriginResponseTime",
|
| 77 |
+
"OriginSSLProtocol",
|
| 78 |
+
"OriginTCPHandshakeDurationMs",
|
| 79 |
+
"OriginTLSHandshakeDurationMs",
|
| 80 |
+
"ParentRayID",
|
| 81 |
+
"PayPerCrawlStatus",
|
| 82 |
+
"RayID",
|
| 83 |
+
"RequestHeaders",
|
| 84 |
+
"ResponseHeaders",
|
| 85 |
+
"SecurityAction",
|
| 86 |
+
"SecurityActions",
|
| 87 |
+
"SecurityRuleDescription",
|
| 88 |
+
"SecurityRuleID",
|
| 89 |
+
"SecurityRuleIDs",
|
| 90 |
+
"SecuritySources",
|
| 91 |
+
"SmartRouteColoID",
|
| 92 |
+
"Subrequests",
|
| 93 |
+
"UpperTierColoID",
|
| 94 |
+
"VerifiedBotCategory",
|
| 95 |
+
"WAFAttackScore",
|
| 96 |
+
"WAFFlags",
|
| 97 |
+
"WAFMatchedVar",
|
| 98 |
+
"WAFRCEAttackScore",
|
| 99 |
+
"WAFSQLiAttackScore",
|
| 100 |
+
"WAFXSSAttackScore",
|
| 101 |
+
"WebAssetsLabelsManaged",
|
| 102 |
+
"WebAssetsOperationID",
|
| 103 |
+
"WorkerCPUTime",
|
| 104 |
+
"WorkerScriptName",
|
| 105 |
+
"WorkerStatus",
|
| 106 |
+
"WorkerSubrequest",
|
| 107 |
+
"WorkerSubrequestCount",
|
| 108 |
+
"WorkerWallTimeUs",
|
| 109 |
+
"ZoneName"
|
| 110 |
+
],
|
| 111 |
+
"owner_id": "973c6d4205d33fbbaa969b02f067c3e4",
|
| 112 |
+
"owner_name_hash": "sha256:f5a8c2befe3e87997ed91e762a523b3ef02184116c3ca504fb784944061bc56d",
|
| 113 |
+
"scope": "account"
|
| 114 |
+
},
|
| 115 |
+
{
|
| 116 |
+
"collected_at": "2026-05-01T02:17:36Z",
|
| 117 |
+
"dataset": "firewall_events",
|
| 118 |
+
"field_count": 42,
|
| 119 |
+
"fields": [
|
| 120 |
+
"AISecurityInjectionScore",
|
| 121 |
+
"AISecurityPIICategories",
|
| 122 |
+
"AISecurityTokenCount",
|
| 123 |
+
"AISecurityUnsafeTopicCategories",
|
| 124 |
+
"Action",
|
| 125 |
+
"ClientASN",
|
| 126 |
+
"ClientASNDescription",
|
| 127 |
+
"ClientCountry",
|
| 128 |
+
"ClientIP",
|
| 129 |
+
"ClientIPClass",
|
| 130 |
+
"ClientRefererHost",
|
| 131 |
+
"ClientRefererPath",
|
| 132 |
+
"ClientRefererQuery",
|
| 133 |
+
"ClientRefererScheme",
|
| 134 |
+
"ClientRequestHost",
|
| 135 |
+
"ClientRequestMethod",
|
| 136 |
+
"ClientRequestPath",
|
| 137 |
+
"ClientRequestProtocol",
|
| 138 |
+
"ClientRequestQuery",
|
| 139 |
+
"ClientRequestScheme",
|
| 140 |
+
"ClientRequestUserAgent",
|
| 141 |
+
"ContentScanObjResults",
|
| 142 |
+
"ContentScanObjSizes",
|
| 143 |
+
"ContentScanObjTypes",
|
| 144 |
+
"Datetime",
|
| 145 |
+
"Description",
|
| 146 |
+
"EdgeColoCode",
|
| 147 |
+
"EdgeResponseStatus",
|
| 148 |
+
"FirewallForAIInjectionScore",
|
| 149 |
+
"FirewallForAIPIICategories",
|
| 150 |
+
"FirewallForAITokenCount",
|
| 151 |
+
"FirewallForAIUnsafeTopicCategories",
|
| 152 |
+
"Kind",
|
| 153 |
+
"LeakedCredentialCheckResult",
|
| 154 |
+
"MatchIndex",
|
| 155 |
+
"Metadata",
|
| 156 |
+
"OriginResponseStatus",
|
| 157 |
+
"OriginatorRayID",
|
| 158 |
+
"RayID",
|
| 159 |
+
"Ref",
|
| 160 |
+
"RuleID",
|
| 161 |
+
"Source"
|
| 162 |
+
],
|
| 163 |
+
"owner_id": "973c6d4205d33fbbaa969b02f067c3e4",
|
| 164 |
+
"owner_name_hash": "sha256:f5a8c2befe3e87997ed91e762a523b3ef02184116c3ca504fb784944061bc56d",
|
| 165 |
+
"scope": "account"
|
| 166 |
+
}
|
| 167 |
+
]
|
schema/data_dictionary.json
CHANGED
|
@@ -116,7 +116,7 @@
|
|
| 116 |
},
|
| 117 |
{
|
| 118 |
"column_name": "*",
|
| 119 |
-
"description": "
|
| 120 |
"table_name": "firewall_events"
|
| 121 |
},
|
| 122 |
{
|
|
@@ -149,11 +149,6 @@
|
|
| 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.",
|
|
@@ -199,6 +194,16 @@
|
|
| 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.",
|
|
|
|
| 116 |
},
|
| 117 |
{
|
| 118 |
"column_name": "*",
|
| 119 |
+
"description": "Zone-aware Cloudflare firewall events from firewallEventsAdaptive. Queried fields are chosen from each zone's settings.availableFields; unsupported fields remain null and are recorded in manifest coverage.",
|
| 120 |
"table_name": "firewall_events"
|
| 121 |
},
|
| 122 |
{
|
|
|
|
| 149 |
"description": "Probe results for high-value Cloudflare metrics that may be plan-limited.",
|
| 150 |
"table_name": "metric_availability"
|
| 151 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 152 |
{
|
| 153 |
"column_name": "unique_visitors",
|
| 154 |
"description": "Cloudflare uniq.uniques from httpRequests1dGroups; this is not a person-level visitor table.",
|
|
|
|
| 194 |
"description": "75th percentile Largest Contentful Paint for the group.",
|
| 195 |
"table_name": "rum_web_vitals_groups"
|
| 196 |
},
|
| 197 |
+
{
|
| 198 |
+
"column_name": "client_ip_hash",
|
| 199 |
+
"description": "Stable SHA-256 hash of clientIP when Cloudflare exposes it for the zone; raw IP is not published.",
|
| 200 |
+
"table_name": "firewall_events"
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"column_name": "skipped_fields_json",
|
| 204 |
+
"description": "Firewall fields requested by the collector but not available for this zone or excluded by maxNumberOfFields.",
|
| 205 |
+
"table_name": "firewall_events"
|
| 206 |
+
},
|
| 207 |
{
|
| 208 |
"column_name": "target_url",
|
| 209 |
"description": "Target URL from Cloudflare bulk redirects.",
|