Bug 1621703 - Add default browser notification telemetry

This commit is contained in:
bytesized 2020-05-13 18:09:11 -07:00 коммит произвёл Frank Bertsch
Родитель 0e9517a25d
Коммит 45df778ecc
3 изменённых файлов: 46 добавлений и 0 удалений

Просмотреть файл

@ -7,10 +7,27 @@
"build_version": {
"type": "string"
},
"client_id": {
"description": "A UUID, specific to the Windows user",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$",
"type": "string"
},
"default_browser": {
"description": "The current default browser",
"type": "string"
},
"notification_action": {
"description": "What action was taken by the user then the toast notification was displayed",
"type": "string"
},
"notification_shown": {
"description": "Whether the notification was shown, not shown, or resulted in an error",
"type": "string"
},
"notification_type": {
"description": "Whether the notification shown was the initial notification, or the followup",
"type": "string"
},
"os_locale": {
"description": "The current user's OS locale setting",
"type": "string"

Просмотреть файл

@ -7,6 +7,23 @@
"build_version": {
"type": "string"
},
"client_id": {
"description": "A UUID, specific to the Windows user",
@COMMON_PATTERN_UUID_1_JSON@,
"type": "string"
},
"notification_action": {
"description": "What action was taken by the user then the toast notification was displayed",
"type": "string"
},
"notification_shown": {
"description": "Whether the notification was shown, not shown, or resulted in an error",
"type": "string"
},
"notification_type": {
"description": "Whether the notification shown was the initial notification, or the followup",
"type": "string"
},
"os_version": {
"description": "Windows version numnber in major.minor.build.UBR format (UBR is optional, only available on Win10)",
"type": "string"

Просмотреть файл

@ -0,0 +1,12 @@
{
"build_channel": "nightly",
"build_version": "74.0a1",
"os_version": "10.0.18363.592",
"os_locale": "en-US",
"default_browser": "firefox",
"previous_default_browser": "edge",
"client_id": "98D8A499-DBA0-4340-A058-64CF35986FFB",
"notification_type": "initial",
"notification_shown": "shown",
"notification_action": "dismissed-by-timeout"
}