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
date: 'YYYY-MM-DD format of the HTTP Archive monthly crawl',
12
+
client: 'Test environment: desktop or mobile',
13
+
page: 'The URL of the page being tested',
14
+
is_root_page: 'Whether the page is the root of the origin.',
15
+
root_page: 'The URL of the root page being tested',
16
+
rank: 'Site popularity rank, from CrUX',
17
+
url: 'The URL of the request',
18
+
is_main_document: 'Whether this request corresponds with the main HTML document of the page, which is the first HTML request after redirects',
19
+
type: 'Simplified description of the type of resource (script, html, css, text, other, etc)',
20
+
index: 'The sequential 0-based index of the request',
21
+
payload: 'JSON-encoded WebPageTest result data for this request',
22
+
summary: 'JSON-encoded summarization of request data',
23
+
request_headers: {
24
+
description: 'Request headers',
25
+
columns: {
26
+
name: 'Request header name',
27
+
value: 'Request header value'
28
+
}
29
+
},
30
+
response_headers: {
31
+
description: 'Response headers',
32
+
columns: {
33
+
name: 'Response header name',
34
+
value: 'Response header value'
35
+
}
36
+
},
37
+
response_body: 'Text-based response body'
38
+
},
10
39
tags: ['crawl_complete']
11
40
}).preOps(ctx=>`
12
-
CREATE SCHEMA IF NOT EXISTS crawl;
13
-
14
-
CREATE TABLE IF NOT EXISTS ${ctx.self()}
15
-
(
16
-
date DATE NOT NULL OPTIONS(description='YYYY-MM-DD format of the HTTP Archive monthly crawl'),
17
-
client STRING NOT NULL OPTIONS(description='Test environment: desktop or mobile'),
18
-
page STRING NOT NULL OPTIONS(description='The URL of the page being tested'),
19
-
is_root_page BOOL OPTIONS(description='Whether the page is the root of the origin.'),
20
-
root_page STRING NOT NULL OPTIONS(description='The URL of the root page being tested'),
21
-
rank INT64 OPTIONS(description='Site popularity rank, from CrUX'),
22
-
url STRING NOT NULL OPTIONS(description='The URL of the request'),
23
-
is_main_document BOOL NOT NULL OPTIONS(description='Whether this request corresponds with the main HTML document of the page, which is the first HTML request after redirects'),
24
-
type STRING OPTIONS(description='Simplified description of the type of resource (script, html, css, text, other, etc)'),
25
-
index INT64 OPTIONS(description='The sequential 0-based index of the request'),
26
-
payload JSON OPTIONS(description='JSON-encoded WebPageTest result data for this request'),
27
-
summary JSON OPTIONS(description='JSON-encoded summarization of request data'),
28
-
request_headers ARRAY<STRUCT<
29
-
name STRING OPTIONS(description='Request header name'),
30
-
value STRING OPTIONS(description='Request header value')
31
-
>> OPTIONS(description='Request headers'),
32
-
response_headers ARRAY<STRUCT<
33
-
name STRING OPTIONS(description='Response header name'),
34
-
value STRING OPTIONS(description='Response header value')
0 commit comments