Skip to content

Commit 36a86d2

Browse files
committed
prettify
1 parent edbbac1 commit 36a86d2

File tree

5 files changed

+1
-7
lines changed

5 files changed

+1
-7
lines changed

scripts/prettier_fix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ export TERM=xterm-color
33

44
SEARCH_PATH=${@:-'src/**/*.md'}
55

6-
npx prettier --write --loglevel warn $SEARCH_PATH
6+
npx prettier --write --log-level warn $SEARCH_PATH

src/concepts/analysis_gotchas.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,19 +318,16 @@ The build id format for Firefox Desktop has been very stable over time thus far,
318318
#### If you still need to do side-by-side comparisons, be aware that significant discrepancies will occur due to a variety of factors:
319319

320320
1. **Bucket Discrepancies (Histograms)**
321-
322321
- **Legacy Telemetry**: Fewer buckets; Uses a fixed number of buckets depending on histogram type.
323322
- **Glean**: More buckets; Uses an algorithmically-generated number of buckets depending on the metric's distribution type.
324323
- **Result**: The distributions and percentiles can look different in GLAM even when measuring the same underlying data because the histogram bounds and number of buckets do not match.
325324

326325
2. **Cross-Process vs. Per-Process Collection**
327-
328326
- **Legacy Telemetry**: Often collects data per process (e.g., main, content, etc.) and can send data differently depending on the process.
329327
- **Glean**: Consolidates measurements across multiple processes.
330328
- **Result**: Aggregated Glean data may appear larger or differently distributed compared to Legacy data, because it merges what Legacy would treat as separate process-specific measurements.
331329

332330
3. **Ping Differences ("baseline" & "metrics" Pings in Glean, "main" pings in Legacy Telemetry)**
333-
334331
- **Legacy Telemetry**: Typically sends one primary ping type (e.g., the “main” ping) for most data.
335332
- **Glean**: Splits data into multiple ping types (e.g., a “baseline” ping, a “metrics” ping, etc.).
336333
- **Result**: The same metric can appear to have more frequent updates or different submission times in Glean if it is reported in multiple pings.

src/concepts/glean/glean.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ This includes previously manual and error-prone steps such as updating the ping
7878
- [Integrate the Glean SDK](https://mozilla.github.io/glean/book/user/adding-glean-to-your-project/index.html) into your product.
7979
- [Use Looker](https://mozilla.cloud.looker.com/) to build Explores and Dashboards using your product's datasets.
8080
- If Looker does not provide the necessary Explores you can resort to [using Redash](https://sql.telemetry.mozilla.org/) to write SQL queries & build dashboards using your products datasets, e.g.:
81-
8281
- `org_mozilla_fenix.baseline`
8382
- `org_mozilla_fenix.events`
8483
- `org_mozilla_fenix.metrics`

src/tools/projects.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,3 @@ starting a new project using anything in this section.
139139

140140
| Name and repo | Description |
141141
| ------------- | ----------- |
142-

src/tools/stmo.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ You should see a `clients_last_seen` entry (appearing as `telemetry.clients_last
7373
- Introspect the available columns
7474

7575
Click `telemetry.clients_last_seen` in the schema browser to display the columns that are available in the table. The following columns are of interest for this query:
76-
7776
- `country`
7877
- `days_since_seen`
7978
- `submission_date`.

0 commit comments

Comments
 (0)