Skip to content

Commit 56503f5

Browse files
authored
Update population sizing doc for new ping on mobile (#822)
1 parent 670a8a5 commit 56503f5

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

docs/advanced/population-sizing.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ The Glean dictionary can be searched for [available fields in Firefox Desktop](h
7171

7272
### Estimating for Firefox on Android and iOS
7373

74+
:::warning
75+
As of Firefox 149 targeting context metrics on mobile have been moved from the `nimbus` table to the `nimbus_targeting_context` table.
76+
:::
77+
7478
The following queries can be used to estimate available population for release channel experiments on Android and iOS, if not using Redash then `{{ sql_targeting_expression }}` should be replaced with the actual sql expression:
7579

7680
For Android release channel:
@@ -80,20 +84,20 @@ For Android release channel:
8084
SELECT
8185
COUNT(DISTINCT client_info.client_id) AS available_weekly_population,
8286
FROM
83-
`mozdata.fenix.nimbus`
87+
`mozdata.fenix.nimbus_targeting_context`
8488
WHERE
8589
DATE(submission_timestamp) BETWEEN CURRENT_DATE - 7 AND CURRENT_DATE - 1
8690
AND ({{ sql_targeting_expression }})
8791
```
8892

89-
For iOS release the table is `mozdata.firefox_ios.nimbus`:
93+
For iOS release the table is `mozdata.firefox_ios.nimbus_targeting_context`:
9094

9195
[iOS Redash Query](https://sql.telemetry.mozilla.org/queries/112919?p_sql_targeting_expression=TRUE)
9296
```sql
9397
SELECT
9498
COUNT(DISTINCT client_info.client_id) AS available_weekly_population,
9599
FROM
96-
`mozdata.firefox_ios.nimbus`
100+
`mozdata.firefox_ios.nimbus_targeting_context`
97101
WHERE
98102
DATE(submission_timestamp) BETWEEN CURRENT_DATE - 7 AND CURRENT_DATE - 1
99103
AND ({{ sql_targeting_expression }})

0 commit comments

Comments
 (0)