1.. _telemetry_pings: 2 3===================== 4Telemetry pings 5===================== 6 7A *Telemetry ping* is the data that we send to Mozilla's Telemetry servers. 8 9The top-level structure is defined by the :doc:`common ping format <../data/common-ping>`. This is a JSON object which contains: 10 11* some basic information shared between different ping types 12* the :doc:`environment data <../data/environment>` (optional) 13* the data specific to the *ping type*, the *payload*. 14 15Ping types 16========== 17 18We send Telemetry with different ping types. The :doc:`main <../data/main-ping>` ping is the ping that contains the bulk of the Telemetry measurements for Firefox. For more specific use-cases, we send other ping types. 19 20Pings sent from code that ships with Firefox are listed in the :doc:`data documentation <../data/index>`. 21 22Important examples are: 23 24* :doc:`main <../data/main-ping>` - contains the information collected by Telemetry (Histograms, Scalars, ...) 25* :doc:`saved-session <../data/main-ping>` - has the same format as a main ping, but it contains the *"classic"* Telemetry payload with measurements covering the whole browser session. This is only a separate type to make storage of saved-session easier server-side. As of Firefox 61 this is sent on Android only. 26* :doc:`crash <../data/crash-ping>` - a ping that is captured and sent after a Firefox process crashes. 27* :doc:`new-profile <../data/new-profile-ping>` - sent on the first run of a new profile. 28* :doc:`update <../data/update-ping>` - sent right after an update is downloaded. 29* :doc:`deletion-request <../data/deletion-request-ping>` - sent when FHR upload is disabled 30