Skip to content

Commit c85d491

Browse files
committed
GUD is gone
1 parent 98423b4 commit c85d491

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

src/concepts/glean/glean.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Because Glean knows more about the individual data, such as its type and the ran
3737

3838
**Provide a consistent base of telemetry**
3939

40-
A baseline of analysis is important for all our products, from counting active users to retention and session times. This is supported out-of-the-box by the SDK, and funnels directly into visualization tools like the [Growth and Usage Dashboard (GUD)](https://gud.telemetry.mozilla.org/).
40+
A baseline of analysis is important for all our products, from counting active users to retention and session times. This is supported out-of-the-box by the SDK, and funnels directly into visualization tools like the [Growth and Usage Dashboard (GUD)](../../cookbooks/looker/growth_usage_dashboards.md).
4141

4242
Metrics that are common to all products, such as the operating system and architecture, are provided automatically in a consistent way.
4343

src/cookbooks/clients_last_seen_bits.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ when we report a retention value for 2020-01-01, we're talking about what
111111
portion of clients active on 2020-01-01 are still active some number of days
112112
later.
113113

114-
In particular, let's consider the "1-Week Retention" measure shown in [GUD](https://gud.telemetry.mozilla.org/)
114+
In particular, let's consider the "1-Week Retention" measure shown in [GUD]
115115
which considers a window of 14 days.
116116
For each client active in "week 0" (days 0 through 6), we determine retention by
117117
checking if they were also active in "week 1" (days 7 through 13).
@@ -434,7 +434,7 @@ When we define forward-looking windows, however, we always choose a metric date
434434
some time in the past. How we number the individual bits depends on what
435435
metric date we choose.
436436

437-
For example, in [GUD](https://gud.telemetry.mozilla.org/), we show a "1-Week Retention" which considers a window of 14 days.
437+
For example, in [GUD] we show a "1-Week Retention" which considers a window of 14 days.
438438
For each client active in "week 0" (days 0 through 6), we determine retention by
439439
checking if they were also active in "week 1" (days 7 through 13).
440440

@@ -899,3 +899,5 @@ the standard 1-Week, 2-Week, and 3-Week retention definitions.
899899
```sql
900900
bits28.retention(bits INT64, submission_date DATE)
901901
```
902+
903+
[gud]: looker/growth_usage_dashboards.md

src/metrics/index.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
This section provides an overview of standard metrics used at Mozilla.
66
Here you'll find the definitions and descriptions for each.
77

8-
For a deep dive into these metrics, see [the GUD documentation](https://mozilla.github.io/gud/).
9-
108
The [Telemetry Behavior Reference](../concepts/index.md) section also provides
119
information related to the definitions below.
1210

@@ -49,7 +47,7 @@ specified day, what proportion (out of 1) are active during the following week.
4947
## Frequently Asked Questions
5048

5149
- Why isn't "New Users" a metric?
52-
- "New Users" is considered a [usage criterion], which means it may be used
50+
- "New Users" is considered a usage criterion, which means it may be used
5351
to filter other metrics, rather than itself being a metric. For example,
5452
you can compute "New User DAU", which would be the subset of DAU that match
5553
the "New User" criterion. The exception here is 1-Week New Profile
@@ -62,6 +60,5 @@ specified day, what proportion (out of 1) are active during the following week.
6260
- For Firefox Desktop, we use the `main` ping to determine activity.
6361
- For products instrumented using Glean, we use the `baseline` ping.
6462

65-
[usage criterion]: https://mozilla.github.io/gud#data-model
6663
[submission dates]: https://bugzilla.mozilla.org/show_bug.cgi?id=1422892
6764
[pings]: ../datasets/pings.md

0 commit comments

Comments
 (0)