From 5d6f80780226e79644712f8e3ba7c0094cd5ed97 Mon Sep 17 00:00:00 2001 From: Alessio Placitelli Date: Fri, 15 Apr 2016 10:08:00 +0200 Subject: [PATCH] Bug 1255472 - Updates the documentation. r=gfritzsche, a=ritu --- .../components/telemetry/docs/environment.rst | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/toolkit/components/telemetry/docs/environment.rst b/toolkit/components/telemetry/docs/environment.rst index 12a274fd35d..e37728875ee 100644 --- a/toolkit/components/telemetry/docs/environment.rst +++ b/toolkit/components/telemetry/docs/environment.rst @@ -107,6 +107,9 @@ Structure:: kernelVersion: , // android/b2g only or null on failure servicePackMajor: , // windows only or null on failure servicePackMinor: , // windows only or null on failure + windowsBuildNumber: , // windows 10 only or null on failure + windowsUBR: , // windows 10 only or null on failure + installYear: , // windows only or null on failure locale: , // "en" or null on failure }, hdd: { @@ -320,6 +323,24 @@ Important values for ``distributionId`` include: - "canonical", for the `Ubuntu Firefox repack `_. - "yandex", for the Firefox Build by Yandex. +system +------ + +os +~~ + +This object contains operating system information. + +- ``name``: the name of the OS. +- ``version``: a string representing the OS version. +- ``kernelVersion``: an Android/B2G only string representing the kernel version. +- ``servicePackMajor``: the Windows only major version number for the installed service pack. +- ``servicePackMinor``: the Windows only minor version number for the installed service pack. +- ``windowsBuildNumber``: the Windows build number, only available for Windows >= 10. +- ``windowsUBR``: the Windows UBR number, only available for Windows >= 10. This value is incremented by Windows cumulative updates patches. +- ``installYear``: the Windows only integer representing the year the OS was installed. +- ``locale``: the string representing the OS locale. + addons ------