Scalars

A scalar metric can be used to track a single value. Unlike histograms, which collect every measurement taken, a scalar only tracks a single value, with later values completely replacing earlier ones.

Historically we started to overload our histogram mechanism to also collect scalar data, such as flag values, counts, labels and others. The scalar measurement types are the suggested way to collect that kind of scalar data. The serialized scalar data is submitted with the main pings. Adding scalars is supported in artifact builds and build faster workflows.

Important

Every new or changed data collection in Firefox needs a data collection review from a Data Steward.

The API

Scalar probes can be managed either through the nsITelemetry interface or the C++ API.

JS API

Probes in privileged JavaScript code can use the following functions to manipulate scalars:

Services.telemetry.scalarAdd(aName, aValue);
Services.telemetry.scalarSet(aName, aValue);
Services.telemetry.scalarSetMaximum(aName, aValue);

Services.telemetry.keyedScalarAdd(aName, aKey, aValue);
Services.telemetry.keyedScalarSet(aName, aKey, aValue);
Services.telemetry.keyedScalarSetMaximum(aName, aKey, aValue);

These functions can throw if, for example, an operation is performed on a scalar type that doesn’t support it (e.g. calling scalarSetMaximum on a scalar of the string kind). Please look at the code documentation for additional information.

registerScalars()

Services.telemetry.registerScalars(category, scalarData);

Register new scalars from add-ons.

  • category - (required, string) The unique category the scalars are registered in (see limitations).

  • scalarData - (required, object) An object of the form {scalarName1: scalar1Data, ...} that contains registration data for multiple scalars; scalarName1 is subject to limitations; each scalar is an object with the following properties:

    • kind - (required, uint) One of the scalar types (nsITelemetry::SCALAR_TYPE_*).

    • keyed - (optional, bool) Whether this is a keyed scalar or not. Defaults to false.

    • record_on_release - (optional, bool) Whether to record this data on release. Defaults to false.

    • expired - (optional, bool) Whether this scalar entry is expired. This allows recording it without error, but it will be discarded. Defaults to false.

For scalars recorded from add-ons, registration happens at runtime. Any new scalar must first be registered through this function before they can be recorded.

After registration, the scalars can be recorded through the usual scalar JS API. If the accumulation happens in a content process right after the registration and the definition still has to reach this process, it will be discarded: one way to work around the problem is to send an IPC message to the content process and start accumulating data once this message has been received. The accumulated data will be submitted in the main pings payload under processes.dynamic.scalars.

Note

Accumulating in dynamic scalars only works in content child processes and in the parent process. All the accumulations (parent and content children) are aggregated together .

New scalars registered here are subject to the same limitations as the ones registered through Scalars.yaml, e.g. the length of the category name or the allowed characters.

When add-ons are updated, they may re-register all of their scalars. In that case, any changes to scalars that are already registered are ignored. The only exception is expiry; a scalar that is re-registered with expired: true will not be recorded anymore.

Example:

Services.telemetry.registerScalars("myAddon.category", {
  "counter_scalar": {
    kind: Ci.nsITelemetry.SCALAR_TYPE_COUNT,
    keyed: false,
    record_on_release: false
  },
});
// Now scalars can be recorded.
Services.telemetry.scalarSet("myAddon.category.counter_scalar", 37);

C++ API

Probes in native code can use the more convenient helper functions declared in Telemetry.h:

void ScalarAdd(mozilla::Telemetry::ScalarID aId, uint32_t aValue);
void ScalarSet(mozilla::Telemetry::ScalarID aId, uint32_t aValue);
void ScalarSet(mozilla::Telemetry::ScalarID aId, const nsAString& aValue);
void ScalarSet(mozilla::Telemetry::ScalarID aId, bool aValue);
void ScalarSetMaximum(mozilla::Telemetry::ScalarID aId, uint32_t aValue);

void ScalarAdd(mozilla::Telemetry::ScalarID aId, const nsAString& aKey, uint32_t aValue);
void ScalarSet(mozilla::Telemetry::ScalarID aId, const nsAString& aKey, uint32_t aValue);
void ScalarSet(mozilla::Telemetry::ScalarID aId, const nsAString& aKey, bool aValue);
void ScalarSetMaximum(mozilla::Telemetry::ScalarID aId, const nsAString& aKey, uint32_t aValue);

Warning

Scalar operations are designed to be cheap, not free. If you wish to manipulate Scalars in a performance-sensitive piece of code, store the operations locally and change the Scalar only after the performance-sensitive piece (“hot path”) has completed.

The YAML definition file

Scalar probes are required to be registered, both for validation and transparency reasons, in the Scalars.yaml definition file.

The probes in the definition file are represented in a fixed-depth, two-level structure:

# The following is a category.
a.category.hierarchy:
  a_probe_name:
    kind: uint
    ...
  another_probe:
    kind: string
    ...
  ...
category2:
  probe:
    kind: int
    ...

Category and probe names need to follow a few rules:

  • they cannot exceed 40 characters each;

  • category names must be alphanumeric + ., with no leading/trailing digit or .;

  • probe names must be alphanumeric + _, with no leading/trailing digit or _.

A probe can be defined as follows:

a.category.hierarchy:
  a_scalar:
    bug_numbers:
      - 1276190
    description: A nice one-line description.
    expires: never
    kind: uint
    notification_emails:
      - telemetry-client-dev@mozilla.com

Required Fields

  • bug_numbers: A list of unsigned integers representing the number of the bugs the probe was introduced in.

  • description: A single or multi-line string describing what data the probe collects and when it gets collected.

  • expires: The version number in which the scalar expires, e.g. “30”; a version number of type “N” is automatically converted to “N.0a1” in order to expire the scalar also in the development channels. A telemetry probe acting on an expired scalar will print a warning into the browser console. For scalars that never expire the value never can be used.

  • kind: A string representing the scalar type. Allowed values are uint, string and boolean.

  • notification_emails: A list of email addresses to notify with alerts of expiring probes. More importantly, these are used by the data steward to verify that the probe is still useful.

  • products: A list of products the scalar can be recorded on. Currently supported values are:

    • firefox - Collected in Firefox Desktop for submission via Firefox Telemetry.

    • thunderbird - Collected in Thunderbird for submission via Thunderbird Telemetry.

  • record_in_processes: A list of processes the scalar is allowed to record in. Currently supported values are:

    • main;

    • content;

    • gpu;

    • all_children (record in all the child processes);

    • all (record in all the processes).

Optional Fields

  • release_channel_collection: This can be either opt-in (default) or opt-out. With the former the scalar is submitted by default on pre-release channels, unless the user has opted out. With the latter the scalar is submitted by default on release and pre-release channels, unless the user has opted out.

  • keyed: A boolean that determines whether this is a keyed scalar. It defaults to false.

  • keys: A string list. Only valid for keyed scalars. Defines a case insensitive list of allowed keys that can be used for this scalar. The list is limited to 100 keys with a maximum length of 72 characters each. When using a key that is not in the list, an error is returned.

  • record_into_store: A list of stores this scalar should be recorded into. It defaults to [main].

  • operating_systems: This field restricts recording to certain operating systems only. Use that in-place of previous cpp_guards to avoid inclusion on not-specified operating systems. It defaults to all. Currently supported values are:

    • mac

    • linux

    • windows

    • android

    • unix

    • all (record on all operating systems)

String type restrictions

To prevent abuses, the content of a string scalar is limited to 50 characters in length. Trying to set a longer string will result in an error and no string being set.

Keyed Scalars

Keyed scalars are collections of uint or boolean scalar types, indexed by a string key that can contain UTF8 characters and cannot be longer than 72 characters. Keyed scalars can contain up to 100 keys. This scalar type is for example useful when you want to break down certain counts by a name, like how often searches happen with which search engine.

Keyed string scalars are not supported.

Keyed scalars should only be used if the set of keys are not known beforehand. If the keys are from a known set of strings, other options are preferred if suitable, like categorical histograms or splitting measurements up into separate scalars.

Multiple processes caveats

When recording data in different processes of the same type (e.g. multiple content processes), the user is responsible for preventing races between the operations on the scalars. Races can happen because scalar changes are sent from each child process to the parent process, and then merged into the final storage location. Since there’s no synchronization between the processes, operations like setMaximum can potentially produce different results if sent from more than one child process.

The processor scripts

The scalar definition file is processed and checked for correctness at compile time. If it conforms to the specification, the processor scripts generate two C++ headers files, included by the Telemetry C++ core.

gen_scalar_data.py

This script is called by the build system to generate the TelemetryScalarData.h C++ header file out of the scalar definitions. This header file contains an array holding the scalar names and version strings, in addition to an array of ScalarInfo structures representing all the scalars.

gen_scalar_enum.py

This script is called by the build system to generate the TelemetryScalarEnums.h C++ header file out of the scalar definitions. This header file contains an enum class with all the scalar identifiers used to access them from code through the C++ API.

Adding a new probe

Making a scalar measurement is a two step process:

  1. add the probe definition to the scalar registry;

  2. record into the scalar using the API.

Registering the scalar

Let’s start by registering two probes in the Scalars.yaml definition file: a simple boolean scalar and a keyed unsigned scalar.

# The following section contains the demo scalars.
profile:
  was_reset:
    bug_numbers:
      - 1301364
    description: True if the profile was reset.
    expires: "60"
    kind: boolean
    notification_emails:
      - change-me@allizom.com
    release_channel_collection: opt-out
    record_in_processes:
      - 'main'

ui:
  download_button_activated:
    bug_numbers:
      - 1301364
    description: >
      The number of times the download button was activated, per
      input type (e.g. 'mouse_click', 'touchscreen', ...).
    expires: "60"
    kind: uint
    keyed: true
    notification_emails:
      - change-me@allizom.com
    release_channel_collection: opt-in
    record_in_processes:
      - 'main'

These two scalars have different collection policies and are both constrained to recording only in the main process. For example, the ui.download_button_activated can be recorded only by users on running pre-release builds of Firefox.

Using the JS API

Changing the demo scalars from privileged JavaScript code is straightforward:

// Set the scalar value: trying to use a non-boolean value doesn't throw
// but rather prints a warning to the browser console
Services.telemetry.scalarSet("profile.was_reset", true);

// This call increments the value stored in "mouse_click" within the
// "ui.download_button_activated" scalar, by 1.
Services.telemetry.keyedScalarAdd("ui.download_button_activated", "mouse_click", 1);

More usage examples can be found in the tests covering the JS Scalars API and child processes scalars.

Using the C++ API

Native code can take advantage of Scalars as well, by including the Telemetry.h header file.

Telemetry::ScalarSet(Telemetry::ScalarID::PROFILE_WAS_RESET, false);

Telemetry::ScalarAdd(Telemetry::ScalarID::UI_DOWNLOAD_BUTTON_ACTIVATED,
                     u"touchscreen"_ns, 1);

The ScalarID enum is automatically generated by the build process, with an example being available here .

Other examples can be found in the test coverage for the scalars C++ API.

Version History

  • Firefox 79: geckoview support removed (see bug 1620395).

  • Firefox 50: Initial scalar support (bug 1276195).

  • Firefox 51: Added keyed scalars (bug 1277806).

  • Firefox 53: Added child process scalars (bug 1278556).

  • Firefox 58

    • Added support for recording new scalars from add-ons (bug 1393801).

    • Ignore re-registering existing scalars for a category instead of failing (bug 1409323).

  • Firefox 60: Enabled support for adding scalars in artifact builds and build-faster workflows (bug 1425909).

  • Firefox 66: Replace cpp_guard with operating_systems (bug 1482912)`