Skip to content

Commit f6ea4e2

Browse files
update tags (#54)
1 parent 9ec8a81 commit f6ea4e2

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

definitions/output/blink_features/features.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish('features', {
66
partitionBy: 'yyyymmdd',
77
clusterBy: ['client', 'rank']
88
},
9-
tags: ['crawl_complete']
9+
tags: ['crawl_complete', 'blink_report']
1010
}).preOps(ctx => `
1111
DELETE FROM ${ctx.self()}
1212
WHERE yyyymmdd = DATE '${constants.currentMonth}';

definitions/output/blink_features/usage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ publish('usage', {
22
schema: 'blink_features',
33
type: 'incremental',
44
protected: true,
5-
tags: ['crawl_complete']
5+
tags: ['crawl_complete', 'blink_report']
66
}).preOps(ctx => `
77
DELETE FROM ${ctx.self()}
88
WHERE yyyymmdd = REPLACE('${constants.currentMonth}', '-', '');

definitions/output/core_web_vitals/technologies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish('technologies', {
99
clusterBy: ['geo', 'app', 'rank', 'client'],
1010
requirePartitionFilter: true
1111
},
12-
tags: ['crux_ready'],
12+
tags: ['crux_ready', 'tech_report'],
1313
dependOnDependencyAssertions: true
1414
}).preOps(ctx => `
1515
DELETE FROM ${ctx.self()}

definitions/output/reports/cwv_tech_adoption.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish('cwv_tech_adoption', {
88
partitionBy: 'date',
99
clusterBy: ['rank', 'geo']
1010
},
11-
tags: ['crux_ready']
11+
tags: ['crux_ready', 'tech_report']
1212
}).preOps(ctx => `
1313
DELETE FROM ${ctx.self()}
1414
WHERE date = '${pastMonth}';

definitions/output/reports/cwv_tech_categories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const pastMonth = constants.fnPastMonth(constants.currentMonth)
33
publish('cwv_tech_categories', {
44
schema: 'reports',
55
type: 'table',
6-
tags: ['crux_ready']
6+
tags: ['crux_ready', 'tech_report']
77
}).query(ctx => `
88
/* {"dataform_trigger": "report_cwv_tech_complete", "name": "categories", "type": "dict"} */
99
WITH pages AS (

definitions/output/reports/cwv_tech_core_web_vitals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish('cwv_tech_core_web_vitals', {
88
partitionBy: 'date',
99
clusterBy: ['rank', 'geo']
1010
},
11-
tags: ['crux_ready']
11+
tags: ['crux_ready', 'tech_report']
1212
}).preOps(ctx => `
1313
CREATE TEMPORARY FUNCTION GET_VITALS(
1414
records ARRAY<STRUCT<

definitions/output/reports/cwv_tech_lighthouse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish('cwv_tech_lighthouse', {
88
partitionBy: 'date',
99
clusterBy: ['rank', 'geo']
1010
},
11-
tags: ['crux_ready']
11+
tags: ['crux_ready', 'tech_report']
1212
}).preOps(ctx => `
1313
CREATE TEMPORARY FUNCTION GET_LIGHTHOUSE(
1414
records ARRAY<STRUCT<

definitions/output/reports/cwv_tech_page_weight.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish('cwv_tech_page_weight', {
88
partitionBy: 'date',
99
clusterBy: ['rank', 'geo']
1010
},
11-
tags: ['crux_ready']
11+
tags: ['crux_ready', 'tech_report']
1212
}).preOps(ctx => `
1313
CREATE TEMPORARY FUNCTION GET_PAGE_WEIGHT(
1414
records ARRAY<STRUCT<

definitions/output/reports/cwv_tech_technologies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const pastMonth = constants.fnPastMonth(constants.currentMonth)
33
publish('cwv_tech_technologies', {
44
schema: 'reports',
55
type: 'table',
6-
tags: ['crux_ready']
6+
tags: ['crux_ready', 'tech_report']
77
}).query(ctx => `
88
/* {"dataform_trigger": "report_cwv_tech_complete", "name": "technologies", "type": "dict"} */
99
WITH pages AS (

definitions/output/reports/reports_dynamic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if (iterations.length === 1) {
1919
protected: true,
2020
bigquery: sql.type === 'histogram' ? { partitionBy: 'date', clusterBy: ['client'] } : {},
2121
schema: 'reports',
22-
tags: ['crawl_complete']
22+
tags: ['crawl_complete', 'http_reports']
2323
}).preOps(ctx => `
2424
--DELETE FROM ${ctx.self()}
2525
--WHERE date = '${params.date}';

0 commit comments

Comments
 (0)