Skip to content

Commit 1b1fd1d

Browse files
committed
Fix links
1 parent 345535e commit 1b1fd1d

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/cookbooks/crash_pings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ GROUP BY normalized_os,
3333
[`STMO#67927`](https://sql.telemetry.mozilla.org/queries/67927/)
3434

3535
These are just initial examples. You can query across all the fields in
36-
a telemetry crash ping, which provides useful information about the crashes themselves. You can view a summary of the available fields in the STMO schema browser, referring to [the documentation on the Firefox crash ping](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/crash-ping.html)
36+
a telemetry crash ping, which provides useful information about the crashes themselves. You can view a summary of the available fields in the STMO schema browser, referring to [the documentation on the Firefox crash ping](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/obsolete/crash-ping.html)
3737
for more information where necessary.

src/datasets/obsolete/crash_summary/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ group by gfx_compositor
2323
## Sampling
2424

2525
`CrashSummary` contains one record for every
26-
[crash ping](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/crash-ping.html)
26+
[crash ping](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/obsolete/crash-ping.html)
2727
submitted by Firefox.
2828

2929
## Scheduling
@@ -68,6 +68,6 @@ root
6868
```
6969

7070
For more detail on where these fields come from in the
71-
[raw data](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/crash-ping.html),
71+
[raw data](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/obsolete/crash-ping.html),
7272
please look at the case classes
7373
[in the `CrashSummaryView` code](https://github.com/mozilla/telemetry-batch-view/blob/master/GRAVEYARD.md#crash-summary).

src/datasets/obsolete/sync_summary/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_Note: some of the information in this chapter is a duplication of the info found on [this](https://wiki.mozilla.org/CloudServices/Sync/ReDash) wiki page. You can also find more detailed information about the data contained in the sync ping [here](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/sync-ping.html)_
1+
_Note: some of the information in this chapter is a duplication of the info found on [this](https://wiki.mozilla.org/CloudServices/Sync/ReDash) wiki page. You can also find more detailed information about the data contained in the sync ping [here](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/obsolete/sync-ping.html)_
22

33
`sync_summary` and `sync_flat_summary` are the primary datasets that track the health of sync. `sync_flat_summary` is derived from `sync_summary` by unpacking/exploding the `engines` field of the latter, so they ultimately contain the same data (see below).
44

src/datasets/obsolete/sync_summary/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Starting with Fenix, however, sync telemetry will start to be sent through [glea
2424

2525
## What's an engine?
2626

27-
Firefox syncs many different types of browser data and (generally speaking) each one of these data types are synced by their own engine. When the app triggers a "sync" each engine makes their own determination of what needs to be synced (if anything). Many syncs can happen in a day (dozens or more on desktop, usually less on mobile). Telemetry about each sync is logged, and each [sync ping](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/sync-ping.html) (sent once a day, and whenever the user logs in or out of sync) contains information about multiple syncs. The scala code responsible for creating the `sync_summary` dataset unpacks each sync ping into one row per sync. The resulting `engines` field is an array of "engine records": data about how each engine performed during that sync. `sync_flat_summary` further unpacking/exploding the `engines` field and creates a dataset that is one row per engine record.
27+
Firefox syncs many different types of browser data and (generally speaking) each one of these data types are synced by their own engine. When the app triggers a "sync" each engine makes their own determination of what needs to be synced (if anything). Many syncs can happen in a day (dozens or more on desktop, usually less on mobile). Telemetry about each sync is logged, and each [sync ping](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/obsolete/sync-ping.html) (sent once a day, and whenever the user logs in or out of sync) contains information about multiple syncs. The scala code responsible for creating the `sync_summary` dataset unpacks each sync ping into one row per sync. The resulting `engines` field is an array of "engine records": data about how each engine performed during that sync. `sync_flat_summary` further unpacking/exploding the `engines` field and creates a dataset that is one row per engine record.
2828

2929
Existing engines (`engine_name` in `sync_flat_summary`) are listed below with brief descriptions in cases where their name isn't transparent.
3030

src/datasets/pings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,13 @@ To augment our data collection, see [Collecting New Data][addprobe] and the
176176
[event_ping]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/event-ping.html
177177
[update_ping]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/update-ping.html
178178
[new_profile_ping]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/new-profile-ping.html
179-
[crash_ping]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/crash-ping.html
179+
[crash_ping]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/obsolete/crash-ping.html
180180
[deletion_request_ping]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/deletion-request-ping.html
181181
[optout_ping]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/obsolete/optout-ping.html
182182
[crash_annotations]: https://searchfox.org/mozilla-central/source/toolkit/crashreporter/CrashAnnotations.yaml
183183
[common_ping_data]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/common-ping.html
184184
[main_reasons]: https://sql.telemetry.mozilla.org/queries/3434
185-
[stack_traces]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/data/crash-ping.html#stack-traces
185+
[stack_traces]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/obsolete/crash-ping.html#stack-traces
186186
[preferences]: https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/internals/preferences.html
187187
[stmo]: https://sql.telemetry.mozilla.org/
188188
[dataset]: https://mozilla.github.io/python_moztelemetry/api.html#module-moztelemetry.dataset

0 commit comments

Comments
 (0)