Skip to content

Commit adf2d6b

Browse files
authored
[DENG-2956][DENG-2894] Add Spain and Canada to public user activity report (#5212)
1 parent 5cda2a6 commit adf2d6b

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
friendly_name: |-
2-
Telemetry Derived - Public Data Report User Activity
2+
Firefox Public Data Report User Activity
33
description: |-
4-
[DESCRIPTION_MISSING]
4+
Data used to populate https://data.firefox.com/dashboard/user-activity.
5+
6+
Code to parse and format this data is in the
7+
[firefox-public-data-report-etl repository](https://github.com/mozilla/firefox-public-data-report-etl/tree/main/public_data_report/user_activity).
58
owners:
6-
- data-platform-infra-wg@mozilla.com
9+
- bewu@mozilla.com

sql/moz-fx-data-shared-prod/telemetry_derived/public_data_report_user_activity_v1/query.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ sample AS (
2929
COALESCE(cn.name, country_group) IN (
3030
'Worldwide',
3131
'Brazil',
32+
'Canada',
3233
'China',
3334
'France',
3435
'Germany',
@@ -37,6 +38,7 @@ sample AS (
3738
'Italy',
3839
'Poland',
3940
'Russia',
41+
'Spain',
4042
'United States'
4143
)
4244
-- we need the whole week for daily_usage metric
@@ -63,7 +65,7 @@ sample_addons AS (
6365
IF(
6466
ARRAY_LENGTH(active_addons) > 0,
6567
active_addons,
66-
-- include a null addon if there were none (either null or an empty list)
68+
-- include a null addon if there were none (either null or an empty list)
6769
[active_addons[SAFE_OFFSET(0)]]
6870
)
6971
) AS addons

0 commit comments

Comments
 (0)