Skip to content

Commit 18ff3bf

Browse files
author
CircleCI generate-sql job
committed
Auto-push due to change on main branch [ci skip]
1 parent 6aba8ee commit 18ff3bf

File tree

139 files changed

+907
-427
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+907
-427
lines changed

sql/bigconfig.yml

+18-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,22 @@ saved_metric_definitions:
1717
interval_value: 0
1818
rct_overrides:
1919
- submission_date
20+
- saved_metric_id: is_99_percent_not_null
21+
metric_type:
22+
predefined_metric: PERCENT_NULL
23+
threshold:
24+
type: CONSTANT
25+
upper_bound: 0.01
26+
schedule_frequency:
27+
interval_type: MINUTES
28+
interval_value: 0
29+
lookback:
30+
lookback_type: DATA_TIME
31+
lookback_window:
32+
interval_type: DAYS
33+
interval_value: 0
34+
rct_overrides:
35+
- submission_date
2036
- saved_metric_id: is_unique
2137
metric_type:
2238
predefined_metric: COUNT_DUPLICATES
@@ -60,15 +76,15 @@ saved_metric_definitions:
6076
metric_schedule:
6177
named_schedule:
6278
name: default
63-
- saved_metric_id: is_valid_channel
79+
- saved_metric_id: is_99_percent_valid_normalized_channel
6480
metric_type:
6581
predefined_metric: PERCENT_VALUE_IN_LIST
6682
parameters:
6783
- key: list
6884
string_value: "release,beta,nightly,aurora,esr,Other"
6985
threshold:
7086
type: CONSTANT
71-
lower_bound: 1
87+
lower_bound: 0.99
7288
upper_bound: 1
7389
schedule_frequency:
7490
interval_type: MINUTES

sql/moz-fx-data-shared-prod/accounts_backend_derived/event_monitoring_live_v1/materialized_view.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SELECT
5959
FROM
6060
combined
6161
WHERE
62-
DATE(submission_timestamp) >= "2025-04-21"
62+
DATE(submission_timestamp) >= "2025-04-22"
6363
GROUP BY
6464
submission_date,
6565
window_start,

sql/moz-fx-data-shared-prod/accounts_cirrus_derived/event_monitoring_live_v1/materialized_view.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SELECT
5959
FROM
6060
combined
6161
WHERE
62-
DATE(submission_timestamp) >= "2025-04-21"
62+
DATE(submission_timestamp) >= "2025-04-22"
6363
GROUP BY
6464
submission_date,
6565
window_start,

sql/moz-fx-data-shared-prod/accounts_frontend_derived/event_monitoring_live_v1/materialized_view.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SELECT
5959
FROM
6060
combined
6161
WHERE
62-
DATE(submission_timestamp) >= "2025-04-21"
62+
DATE(submission_timestamp) >= "2025-04-22"
6363
GROUP BY
6464
submission_date,
6565
window_start,

sql/moz-fx-data-shared-prod/bedrock_derived/event_monitoring_live_v1/materialized_view.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ SELECT
123123
FROM
124124
combined
125125
WHERE
126-
DATE(submission_timestamp) >= "2025-04-21"
126+
DATE(submission_timestamp) >= "2025-04-22"
127127
GROUP BY
128128
submission_date,
129129
window_start,

sql/moz-fx-data-shared-prod/burnham_derived/event_monitoring_live_v1/materialized_view.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SELECT
5959
FROM
6060
combined
6161
WHERE
62-
DATE(submission_timestamp) >= "2025-04-21"
62+
DATE(submission_timestamp) >= "2025-04-22"
6363
GROUP BY
6464
submission_date,
6565
window_start,

sql/moz-fx-data-shared-prod/debug_ping_view_derived/event_monitoring_live_v1/materialized_view.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SELECT
5959
FROM
6060
combined
6161
WHERE
62-
DATE(submission_timestamp) >= "2025-04-21"
62+
DATE(submission_timestamp) >= "2025-04-22"
6363
GROUP BY
6464
submission_date,
6565
window_start,

sql/moz-fx-data-shared-prod/fenix/use_counters/schema.yaml

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
fields:
22
- name: normalized_app_id
3-
mode: NULLABLE
43
type: STRING
4+
mode: NULLABLE
55
description: App ID of the channel data was received from
66
- name: normalized_channel
7-
mode: NULLABLE
87
type: STRING
8+
mode: NULLABLE
99
description: Normalized channel name
1010
- name: additional_properties
1111
type: STRING
@@ -7994,6 +7994,18 @@ fields:
79947994
- name: use_counter_page_math_mlused
79957995
type: INTEGER
79967996
mode: NULLABLE
7997+
- name: use_counter_doc_animation_commitstyles
7998+
type: INTEGER
7999+
mode: NULLABLE
8000+
- name: use_counter_doc_commit_styles_non_filling_final_value
8001+
type: INTEGER
8002+
mode: NULLABLE
8003+
- name: use_counter_page_animation_commitstyles
8004+
type: INTEGER
8005+
mode: NULLABLE
8006+
- name: use_counter_page_commit_styles_non_filling_final_value
8007+
type: INTEGER
8008+
mode: NULLABLE
79978009
- name: labeled_counter
79988010
type: RECORD
79998011
mode: NULLABLE

sql/moz-fx-data-shared-prod/fenix/use_counters/view.sql

+25-5
Original file line numberDiff line numberDiff line change
@@ -2604,7 +2604,11 @@ SELECT
26042604
metrics.counter.use_counter_doc_text_directive_not_created,
26052605
metrics.counter.use_counter_doc_text_directive_pages,
26062606
metrics.counter.use_counter_doc_math_mlused,
2607-
metrics.counter.use_counter_page_math_mlused
2607+
metrics.counter.use_counter_page_math_mlused,
2608+
metrics.counter.use_counter_doc_animation_commitstyles,
2609+
metrics.counter.use_counter_doc_commit_styles_non_filling_final_value,
2610+
metrics.counter.use_counter_page_animation_commitstyles,
2611+
metrics.counter.use_counter_page_commit_styles_non_filling_final_value
26082612
) AS `counter`,
26092613
STRUCT(
26102614
metrics.labeled_counter.glean_error_invalid_label,
@@ -5230,7 +5234,11 @@ SELECT
52305234
metrics.counter.use_counter_doc_text_directive_not_created,
52315235
metrics.counter.use_counter_doc_text_directive_pages,
52325236
metrics.counter.use_counter_doc_math_mlused,
5233-
metrics.counter.use_counter_page_math_mlused
5237+
metrics.counter.use_counter_page_math_mlused,
5238+
metrics.counter.use_counter_doc_animation_commitstyles,
5239+
metrics.counter.use_counter_doc_commit_styles_non_filling_final_value,
5240+
metrics.counter.use_counter_page_animation_commitstyles,
5241+
metrics.counter.use_counter_page_commit_styles_non_filling_final_value
52345242
) AS `counter`,
52355243
STRUCT(
52365244
metrics.labeled_counter.glean_error_invalid_label,
@@ -7856,7 +7864,11 @@ SELECT
78567864
metrics.counter.use_counter_doc_text_directive_not_created,
78577865
metrics.counter.use_counter_doc_text_directive_pages,
78587866
metrics.counter.use_counter_doc_math_mlused,
7859-
metrics.counter.use_counter_page_math_mlused
7867+
metrics.counter.use_counter_page_math_mlused,
7868+
metrics.counter.use_counter_doc_animation_commitstyles,
7869+
metrics.counter.use_counter_doc_commit_styles_non_filling_final_value,
7870+
metrics.counter.use_counter_page_animation_commitstyles,
7871+
metrics.counter.use_counter_page_commit_styles_non_filling_final_value
78607872
) AS `counter`,
78617873
STRUCT(
78627874
metrics.labeled_counter.glean_error_invalid_label,
@@ -10482,7 +10494,11 @@ SELECT
1048210494
metrics.counter.use_counter_doc_text_directive_not_created,
1048310495
metrics.counter.use_counter_doc_text_directive_pages,
1048410496
metrics.counter.use_counter_doc_math_mlused,
10485-
metrics.counter.use_counter_page_math_mlused
10497+
metrics.counter.use_counter_page_math_mlused,
10498+
metrics.counter.use_counter_doc_animation_commitstyles,
10499+
metrics.counter.use_counter_doc_commit_styles_non_filling_final_value,
10500+
metrics.counter.use_counter_page_animation_commitstyles,
10501+
metrics.counter.use_counter_page_commit_styles_non_filling_final_value
1048610502
) AS `counter`,
1048710503
STRUCT(
1048810504
metrics.labeled_counter.glean_error_invalid_label,
@@ -13108,7 +13124,11 @@ SELECT
1310813124
metrics.counter.use_counter_doc_text_directive_not_created,
1310913125
metrics.counter.use_counter_doc_text_directive_pages,
1311013126
metrics.counter.use_counter_doc_math_mlused,
13111-
metrics.counter.use_counter_page_math_mlused
13127+
metrics.counter.use_counter_page_math_mlused,
13128+
metrics.counter.use_counter_doc_animation_commitstyles,
13129+
metrics.counter.use_counter_doc_commit_styles_non_filling_final_value,
13130+
metrics.counter.use_counter_page_animation_commitstyles,
13131+
metrics.counter.use_counter_page_commit_styles_non_filling_final_value
1311213132
) AS `counter`,
1311313133
STRUCT(
1311413134
metrics.labeled_counter.glean_error_invalid_label,

sql/moz-fx-data-shared-prod/fenix_derived/engagement_v1/bigconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tag_deployments:
1414
- column_selectors:
1515
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.engagement_v1.normalized_channel
1616
metrics:
17-
- saved_metric_id: is_valid_channel
17+
- saved_metric_id: is_99_percent_valid_normalized_channel
1818
- column_selectors:
1919
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.engagement_v1.*
2020
metrics:

sql/moz-fx-data-shared-prod/fenix_derived/metrics_clients_daily_v1/bigconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tag_deployments:
1616
- column_selectors:
1717
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..fenix_derived.metrics_clients_daily_v1.normalized_channel
1818
metrics:
19-
- saved_metric_id: is_valid_channel
19+
- saved_metric_id: is_99_percent_valid_normalized_channel
2020
- column_selectors:
2121
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..fenix_derived.metrics_clients_daily_v1.*
2222
metrics:

sql/moz-fx-data-shared-prod/fenix_derived/metrics_clients_last_seen_v1/bigconfig.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,17 @@ tag_deployments:
99
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..fenix_derived.metrics_clients_last_seen_v1.submission_date
1010
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..fenix_derived.metrics_clients_last_seen_v1.client_id
1111
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..fenix_derived.metrics_clients_last_seen_v1.sample_id
12+
metrics:
13+
- saved_metric_id: is_not_null
14+
- column_selectors:
1215
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..fenix_derived.metrics_clients_last_seen_v1.n_metrics_ping
1316
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..fenix_derived.metrics_clients_last_seen_v1.days_sent_metrics_ping_bits
1417
metrics:
15-
- saved_metric_id: is_not_null
18+
- saved_metric_id: is_99_percent_not_null
1619
- column_selectors:
1720
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..fenix_derived.metrics_clients_last_seen_v1.normalized_channel
1821
metrics:
19-
- saved_metric_id: is_valid_channel
22+
- saved_metric_id: is_99_percent_valid_normalized_channel
2023
- column_selectors:
2124
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..fenix_derived.metrics_clients_last_seen_v1.*
2225
metrics:

sql/moz-fx-data-shared-prod/fenix_derived/new_profile_activation_clients_v1/bigconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tag_deployments:
1515
- column_selectors:
1616
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.new_profile_activation_clients_v1.normalized_channel
1717
metrics:
18-
- saved_metric_id: is_valid_channel
18+
- saved_metric_id: is_99_percent_valid_normalized_channel
1919
- column_selectors:
2020
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.new_profile_activation_clients_v1.*
2121
metrics:

sql/moz-fx-data-shared-prod/fenix_derived/new_profile_activations_v1/bigconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tag_deployments:
1414
- column_selectors:
1515
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.new_profile_activations_v1.normalized_channel
1616
metrics:
17-
- saved_metric_id: is_valid_channel
17+
- saved_metric_id: is_99_percent_valid_normalized_channel
1818
- column_selectors:
1919
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.new_profile_activations_v1.*
2020
metrics:

sql/moz-fx-data-shared-prod/fenix_derived/new_profiles_v1/bigconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tag_deployments:
1414
- column_selectors:
1515
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.new_profiles_v1.normalized_channel
1616
metrics:
17-
- saved_metric_id: is_valid_channel
17+
- saved_metric_id: is_99_percent_valid_normalized_channel
1818
- column_selectors:
1919
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.new_profiles_v1.*
2020
metrics:

sql/moz-fx-data-shared-prod/fenix_derived/retention_v1/bigconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tag_deployments:
1414
- column_selectors:
1515
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.retention_v1.normalized_channel
1616
metrics:
17-
- saved_metric_id: is_valid_channel
17+
- saved_metric_id: is_99_percent_valid_normalized_channel
1818
- column_selectors:
1919
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.fenix_derived.retention_v1.*
2020
metrics:

sql/moz-fx-data-shared-prod/fenix_derived/usage_reporting_active_users_aggregates_v1/bigconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ table_deployments:
1515
- saved_metric_id: is_2_char_len
1616
- column_name: channel
1717
metrics:
18-
- saved_metric_id: is_valid_channel
18+
- saved_metric_id: is_99_percent_valid_normalized_channel
1919
table_metrics:
2020
- saved_metric_id: volume
2121
- saved_metric_id: freshness

sql/moz-fx-data-shared-prod/firefox_crashreporter_derived/event_monitoring_live_v1/materialized_view.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SELECT
5959
FROM
6060
combined
6161
WHERE
62-
DATE(submission_timestamp) >= "2025-04-21"
62+
DATE(submission_timestamp) >= "2025-04-22"
6363
GROUP BY
6464
submission_date,
6565
window_start,

sql/moz-fx-data-shared-prod/firefox_desktop/use_counters/schema.yaml

+30
Original file line numberDiff line numberDiff line change
@@ -19629,6 +19629,36 @@ fields:
1962919629
description: 'Whether a page has used MathML. Compare against `use.counter.top_level_content_documents_destroyed`
1963019630
to calculate the rate.
1963119631

19632+
'
19633+
- name: use_counter_doc_animation_commitstyles
19634+
type: INTEGER
19635+
mode: NULLABLE
19636+
description: 'Whether a document called called Animation.commitStyles. Compare
19637+
against `use.counter.content_documents_destroyed` to calculate the rate.
19638+
19639+
'
19640+
- name: use_counter_doc_commit_styles_non_filling_final_value
19641+
type: INTEGER
19642+
mode: NULLABLE
19643+
description: 'Whether a document calls commitStyles and its result differs depending
19644+
on whether the endpoint-inclusive pref is enabled or not. Compare against
19645+
`use.counter.content_documents_destroyed` to calculate the rate.
19646+
19647+
'
19648+
- name: use_counter_page_animation_commitstyles
19649+
type: INTEGER
19650+
mode: NULLABLE
19651+
description: 'Whether a page called called Animation.commitStyles. Compare against
19652+
`use.counter.top_level_content_documents_destroyed` to calculate the rate.
19653+
19654+
'
19655+
- name: use_counter_page_commit_styles_non_filling_final_value
19656+
type: INTEGER
19657+
mode: NULLABLE
19658+
description: 'Whether a page calls commitStyles and its result differs depending
19659+
on whether the endpoint-inclusive pref is enabled or not. Compare against
19660+
`use.counter.top_level_content_documents_destroyed` to calculate the rate.
19661+
1963219662
'
1963319663
- name: labeled_counter
1963419664
type: RECORD

sql/moz-fx-data-shared-prod/firefox_desktop_background_defaultagent_derived/baseline_clients_daily_v1/bigconfig.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,18 @@ tag_deployments:
99
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_daily_v1.submission_date
1010
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_daily_v1.client_id
1111
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_daily_v1.sample_id
12+
metrics:
13+
- saved_metric_id: is_not_null
14+
- column_selectors:
1215
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_daily_v1.first_seen_date
1316
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_daily_v1.first_run_date
1417
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_daily_v1.durations
1518
metrics:
16-
- saved_metric_id: is_not_null
19+
- saved_metric_id: is_99_percent_not_null
1720
- column_selectors:
1821
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_daily_v1.normalized_channel
1922
metrics:
20-
- saved_metric_id: is_valid_channel
23+
- saved_metric_id: is_99_percent_valid_normalized_channel
2124
- column_selectors:
2225
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_daily_v1.*
2326
metrics:

sql/moz-fx-data-shared-prod/firefox_desktop_background_defaultagent_derived/baseline_clients_last_seen_v1/bigconfig.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,19 @@ tag_deployments:
99
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.submission_date
1010
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.client_id
1111
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.sample_id
12-
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.first_seen_date
1312
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.days_seen_bits
1413
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.days_active_bits
1514
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.days_created_profile_bits
1615
metrics:
17-
- saved_metric_id: is_not_null
16+
- saved_metric_id: is_99_percent_not_null
17+
- column_selectors:
18+
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.first_seen_date
19+
metrics:
20+
- saved_metric_id: is_99_percent_not_null
1821
- column_selectors:
1922
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.normalized_channel
2023
metrics:
21-
- saved_metric_id: is_valid_channel
24+
- saved_metric_id: is_99_percent_valid_normalized_channel
2225
- column_selectors:
2326
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod.firefox_desktop_background_defaultagent_derived.baseline_clients_last_seen_v1.*
2427
metrics:

sql/moz-fx-data-shared-prod/firefox_desktop_background_defaultagent_derived/event_monitoring_live_v1/materialized_view.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SELECT
5959
FROM
6060
combined
6161
WHERE
62-
DATE(submission_timestamp) >= "2025-04-21"
62+
DATE(submission_timestamp) >= "2025-04-22"
6363
GROUP BY
6464
submission_date,
6565
window_start,

sql/moz-fx-data-shared-prod/firefox_desktop_background_defaultagent_derived/metrics_clients_daily_v1/bigconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tag_deployments:
1616
- column_selectors:
1717
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..firefox_desktop_background_defaultagent_derived.metrics_clients_daily_v1.normalized_channel
1818
metrics:
19-
- saved_metric_id: is_valid_channel
19+
- saved_metric_id: is_99_percent_valid_normalized_channel
2020
- column_selectors:
2121
- name: moz-fx-data-shared-prod.moz-fx-data-shared-prod..firefox_desktop_background_defaultagent_derived.metrics_clients_daily_v1.*
2222
metrics:

0 commit comments

Comments
 (0)