@@ -3,6 +3,9 @@ WITH baseline AS (
3
3
{% if app_name == " firefox_desktop" %}
4
4
days_since_desktop_active,
5
5
{% endif %}
6
+ {% if app_name not in [" firefox_desktop" , " mozphab" , " burnham" , " firefox_desktop_background_update" ] %}
7
+ normalized_app_id,
8
+ {% endif %}
6
9
days_since_seen,
7
10
days_since_active,
8
11
days_since_created_profile,
@@ -65,12 +68,15 @@ metrics AS (
65
68
submission_date,
66
69
client_id,
67
70
sample_id,
71
+ {% if app_name == " firefox_desktop" %}
72
+ profile_group_id,
73
+ {% endif %}
74
+ {% if app_name == " firefox_ios" %}
75
+ uri_count,
76
+ {% endif %}
68
77
normalized_channel,
69
78
n_metrics_ping,
70
79
days_sent_metrics_ping_bits,
71
- {% if app_name == " firefox_desktop" %}
72
- profile_group_id
73
- {% endif %}
74
80
FROM
75
81
` {{ project_id }}.{{ app_name }}.metrics_clients_last_seen`
76
82
WHERE
@@ -86,6 +92,12 @@ SELECT
86
92
{% if app_name == " firefox_desktop" %}
87
93
baseline .days_since_desktop_active ,
88
94
{% endif %}
95
+ {% if app_name not in [" firefox_desktop" , " mozphab" , " burnham" , " firefox_desktop_background_update" ] %}
96
+ baseline .normalized_app_id ,
97
+ {% endif %}
98
+ {% if app_name == " firefox_ios" %}
99
+ metrics .uri_count ,
100
+ {% endif %}
89
101
baseline .days_since_seen ,
90
102
baseline .days_since_active ,
91
103
baseline .days_since_created_profile ,
0 commit comments