1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Adding a new metric? We have docs for that!
# https://firefox-source-docs.mozilla.org/toolkit/components/glean/user/new_definitions_file.html
---
$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0
$tags:
- "Firefox :: Nimbus Desktop Client"
# The `nimbus_targeting_environment` category contains metrics that relate to
# the targeting context, but are not present in it verbatim.
#
# For example, pref values, which are accessed by the `|preferenceValue` filter.
#
# Also included are the metrics used to debug targeting context evaluation:
#
# * `targeting_context_value`
# * `pref_type_errors`
# * `attr_eval_errors`
nimbus_targeting_environment:
targeting_context_value:
bugs: &targeting_context_bugs
- https://bugzilla.mozilla.org/show_bug.cgi?id=1928107
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937207
- https://bugzilla.mozilla.org/show_bug.cgi?id=1898394
- https://bugzilla.mozilla.org/show_bug.cgi?id=1949813
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963160
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963183
- https://bugzilla.mozilla.org/show_bug.cgi?id=1971552
- https://bugzilla.mozilla.org/show_bug.cgi?id=1967328
data_reviews: &targeting_context_data_reviews
- https://bugzilla.mozilla.org/show_bug.cgi?id=1928107
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937207
- https://bugzilla.mozilla.org/show_bug.cgi?id=1898394
- https://bugzilla.mozilla.org/show_bug.cgi?id=1949813
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963160
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963183
- https://bugzilla.mozilla.org/show_bug.cgi?id=1971552
- https://bugzilla.mozilla.org/show_bug.cgi?id=1967328
notification_emails: &targeting_context_notification_emails
- beth@mozilla.com
- project-nimbus@mozilla.com
expires: &targeting_context_expiry never
send_in_pings: &targeting_context_pings
- nimbus-targeting-context
disabled: true
description: >
The entirety of the Nimbus targeting context as a stringified JSON object.
This is disabled by default and only intended to be enabled via server knobs to debug
recording failures in individual nimbus_targeting_context metric values.
data_sensitivity:
- stored_content
type: text
pref_type_errors:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: >
When a pref in `nimbus_targeting_environment.pref_values` cannot
be recorded because the type in the metric does not match the type of the
pref, it is recorded in this metric.
data_sensitivity:
- technical
type: labeled_counter
labels:
- "browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons"
- "browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features"
- "browser.newtabpage.activity-stream.feeds.section.highlights"
- "browser.newtabpage.activity-stream.feeds.section.topstories"
- "browser.newtabpage.activity-stream.feeds.topsites"
- "browser.newtabpage.activity-stream.showSearch"
- "browser.newtabpage.activity-stream.showSponsoredTopSites"
- "browser.newtabpage.enabled"
- "browser.startup.page"
- "browser.toolbars.bookmarks.visibility"
- "browser.urlbar.quicksuggest.dataCollection.enabled"
- "browser.urlbar.showSearchSuggestionsFirst"
- "browser.urlbar.suggest.quicksuggest.sponsored"
- "media.videocontrols.picture-in-picture.enabled"
- "media.videocontrols.picture-in-picture.video-toggle.enabled"
- "media.videocontrols.picture-in-picture.video-toggle.has-used"
- "messaging-system-action.testday"
- "network.trr.mode"
- "nimbus.qa.pref-1"
- "nimbus.qa.pref-2"
- "security.sandbox.content.level"
- "trailhead.firstrun.didSeeAboutWelcome"
attr_eval_errors:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: >
When a metric in `nimbus_targeting_context` cannot be recorded because an
exception was thrown during evaluation of the targeting context attribute
the name of the attribute is recorded in this metric.
type: labeled_counter
labels:
- "activeExperiments"
- "activeRollouts"
- "addonsInfo"
- "addressesSaved"
- "archBits"
- "attributionData"
- "browserSettings"
- "buildId"
- "currentDate"
- "defaultPDFHandler"
- "distributionId"
- "doesAppNeedPin"
- "enrollmentsMap"
- "firefoxVersion"
- "hasActiveEnterprisePolicies"
- "hasPinnedTabs"
- "homePageSettings"
- "isDefaultBrowser"
- "isDefaultHandler"
- "isFirstStartup"
- "isFxAEnabled"
- "isFxASignedIn"
- "isMSIX"
- "locale"
- "memoryMB"
- "os"
- "primaryResolution"
- "profileAgeCreated"
- "region"
- "totalBookmarksCount"
- "userMonthlyActivity"
- "userPrefersReducedMotion"
- "usesFirefoxSync"
- "version"
user_set_prefs:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: An array of preferences that are user set.
data_sensitivity:
- interaction
type: object
structure:
type: array
items:
type: string
pref_values:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Values of specific preferences we want to target on.
data_sensitivity:
- technical
- interaction
type: object
structure:
type: object
properties:
browser__newtabpage__activity_stream__asrouter__userprefs__cfr__addons:
type: boolean
browser__newtabpage__activity_stream__asrouter__userprefs__cfr__features:
type: boolean
browser__newtabpage__activity_stream__feeds__section__highlights:
type: boolean
browser__newtabpage__activity_stream__feeds__section__topstories:
type: boolean
browser__newtabpage__activity_stream__feeds__topsites:
type: boolean
browser__newtabpage__activity_stream__showSearch:
type: boolean
browser__newtabpage__activity_stream__showSponsoredTopSites:
type: boolean
browser__newtabpage__enabled:
type: boolean
browser__startup__page:
type: number
browser__toolbars__bookmarks__visibility:
type: string
browser__urlbar__quicksuggest__dataCollection__enabled:
type: boolean
browser__urlbar__showSearchSuggestionsFirst:
type: boolean
browser__urlbar__suggest__quicksuggest__sponsored:
type: boolean
media__videocontrols__picture_in_picture__enabled:
type: boolean
media__videocontrols__picture_in_picture__video_toggle__enabled:
type: boolean
media__videocontrols__picture_in_picture__video_toggle__has_used:
type: boolean
messaging_system_action__testday:
type: string
network__trr__mode:
type: number
security__sandbox__content__level:
type: number
trailhead__firstrun__didSeeAboutWelcome:
type: boolean
# Prefs used by Nimbus for QA.
nimbus__qa__pref_1:
type: string
nimbus__qa__pref_2:
type: string
# The nimbus_targeting_context category contains metrics that directly
# correspond to individual fields in the targeting context.
#
# The fields may be transformed in some way (e.g., by converting dates to ISO
# 8601 strings) so that they can be recorded by Glean.
nimbus_targeting_context:
active_experiments:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The slugs of the actively enrolled experiments
data_sensitivity:
- interaction
type: object
structure:
type: array
items:
type: string
active_rollouts:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The slugs of the actively enrolled rollouts
data_sensitivity:
- interaction
type: object
structure:
type: array
items:
type: string
addons_info:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Information about installed addons.
data_sensitivity:
- interaction
type: object
structure:
type: object
properties:
# The IDs of installed addons.
addons:
type: array
items:
type: string
# Has the user installed addons beyond the built in and system addons?
hasInstalledAddons:
type: boolean
addresses_saved:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The number of addresses the user has saved.
data_sensitivity:
- interaction
type: quantity
unit: addresses
arch_bits:
no_lint:
- UNIT_IN_NAME # metric name must match the targeting context attribute
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The architecture of the user's CPU (32-bit or 64-bit)
data_sensitivity:
- technical
type: quantity
unit: bits
attribution_data:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: >
Attribution data.
data_sensitivity:
- interaction
type: object
structure:
type: object
properties:
medium:
type: string
source:
type: string
ua:
type: string
browser_settings:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Information about the browser's update channel.
data_sensitivity:
- technical
type: object
structure:
type: object
properties:
update:
type: object
properties:
channel:
type: string
build_id:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The Build ID.
data_sensitivity:
- technical
type: quantity
unit: build ID
current_date:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: >
The current date, as an ISO-8601 string.
data_sensitivity:
- technical
type: string
default_pdf_handler:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: >
Information about the system's default PDF handler.
data_sensitivity:
- interaction
type: object
structure:
type: object
properties:
# Is the system default PDF handler a known browser?
knownBrowser:
type: boolean
# Is there a system default PDF handler registered?
registered:
type: boolean
distribution_id:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: >
The installation's distribution ID.
data_sensitivity:
- technical
type: string
does_app_need_pin:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Does the app need pinning (i.e., is the app not pinned).
data_sensitivity:
- interaction
type: boolean
enrollments_map:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: >
Information about historic enrollments, including the branches enrolled.
data_sensitivity:
- technical
type: object
structure:
type: array
items:
type: object
properties:
experimentSlug:
type: string
branchSlug:
type: string
firefox_version:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The Firefox major version number.
data_sensitivity:
- technical
type: quantity
unit: major version
has_active_enterprise_policies:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Whether the profile has any active enterprise policies.
data_sensitivity:
- technical
type: boolean
has_pinned_tabs:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Whether the profile has any pinned tabs in any open window.
data_sensitivity:
- technical
type: boolean
home_page_settings:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Information about the user's home page settings.
data_sensitivity:
- interaction
type: object
structure:
type: object
properties:
# Is the user's home page a custom URL?
isCustomUrl:
type: boolean
# Is the user's home page the default?
isDefault:
type: boolean
# Is the user's home page locked?
isLocked:
type: boolean
# Is the user's home page a web extension URL?
isWebExt:
type: boolean
is_default_browser:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Whether the current browser is the default browser.
data_sensitivity:
- interaction
type: boolean
is_default_handler:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: >
Whether the current browser is registered as the default handler for various
filetypes.
data_sensitivity:
- interaction
type: object
structure:
type: object
properties:
html:
type: boolean
pdf:
type: boolean
is_first_startup:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: >
Is this the first startup of the browser on this install? (NB: Must have been
explicitly launched with the --first-startup commandline flag.)
data_sensitivity:
- technical
type: boolean
is_fx_a_enabled:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Whether Firefox Accounts and Sync are enabled.
data_sensitivity:
- interaction
type: boolean
is_fx_a_signed_in:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Whether the user is logged in to Firefox Accounts.
data_sensitivity:
- interaction
type: boolean
is_msix:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Is this copy of Firefox installed from an MSIX installer?
data_sensitivity:
- technical
type: boolean
locale:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: What is the active locale of the browser?
data_sensitivity:
- technical
type: string
memory_mb:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The amount of system memory, in mebibytes (MiB).
data_sensitivity:
- technical
type: quantity
unit: MiB
os:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Information about the operating system.
data_sensitivity:
- technical
type: object
structure:
type: object
properties:
isLinux:
type: boolean
isMac:
type: boolean
isWindows:
type: boolean
windowsBuildNumber:
type: number
windowsVersion:
type: number
primary_resolution:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The resolution of the primary display.
data_sensitivity:
- technical
type: object
structure:
type: object
properties:
height:
type: number
width:
type: number
profile_age_created:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The UNIX timestamp of when the profile was created.
data_sensitivity:
- technical
type: quantity
unit: seconds since UNIX epoch
region:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: What region is the browser located in?
data_sensitivity:
- technical
type: string
total_bookmarks_count:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The number of bookmarks.
data_sensitivity:
- technical
type: quantity
unit: bookmarks
user_monthly_activity:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Information about the user's activity over the last 28 days.
data_sensitivity:
- interaction
type: object
structure:
type: array
items:
type: object
properties:
numberOfURLsVisited:
type: number
date:
type: string
user_prefers_reduced_motion:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Whether the user prefers reduced motion.
data_sensitivity:
- interaction
type: boolean
uses_firefox_sync:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: Whether the user uses Firefox Sync.
data_sensitivity:
- interaction
type: boolean
version:
bugs: *targeting_context_bugs
data_reviews: *targeting_context_data_reviews
expires: *targeting_context_expiry
notification_emails: *targeting_context_notification_emails
send_in_pings: *targeting_context_pings
description: The full Firefox version string.
data_sensitivity:
- technical
type: string
nimbus_events:
enrollment:
type: event
description: >
Recorded when a user has met the conditions and is first bucketed into an
experiment (i.e. targeting matched and they were randomized into a bucket
and branch of the experiment). Expected a maximum of once per experiment
per user.
extra_keys:
experiment:
type: string
description: The slug/unique identifier of the experiment
branch:
type: string
description: The branch slug/identifier that was randomly chosen
experiment_type:
type: string
description: Indicates whether this is an experiment or rollout
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
data_sensitivity:
- technical
notification_emails:
- tlong@mozilla.com
- nimbus-team@mozilla.com
expires: never
send_in_pings:
- background-update
- events
enroll_failed:
type: event
description: >
Recorded when an enrollment fails, including the reason for the failure.
extra_keys:
experiment:
type: string
description: The slug/unique identifier of the experiment
reason:
type: string
description: The reason for the enrollment failure
branch:
type: string
description: If reason == "invalid-branch", this is the invalid branch.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
data_sensitivity:
- technical
notification_emails:
- tlong@mozilla.com
- nimbus-team@mozilla.com
expires: never
send_in_pings:
- background-update
- events
unenrollment:
type: event
description: >
Recorded when either telemetry is disabled, or the experiment has run
for its designed duration (i.e. it is no longer present in the Nimbus
Remote Settings collection)
extra_keys:
experiment:
type: string
description: The slug/unique identifier of the experiment
branch:
type: string
description: The branch slug/identifier that was randomly chosen
reason:
type: string
description: The reason for the unenrollment
changed_pref:
type: string
description: >
If reason == "changed-pref", then this contains the name of the pref
that changed that caused the unenrollment.
conflicting_slug:
type: string
description: >
If reason == "prefFlips-conflict", the slug of the conflicting
experiment that caused the unenrollment.
pref_name:
type: string
description: >
If reason == "prefFlips-failed", the name of the pref that failed to set.
pref_type:
type: string
description: >
If reason == "prefFlips-failed", The type of the existing pref value
(one of "bool", "string", "int", or "invalid").
locale:
type: string
description: >
If reason == "l10n-missing-entry" or "l10n-missing-locale" this is the
locale we failed to find in the set of available translations.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
- https://bugzilla.mozilla.org/show_bug.cgi?id=1843126
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896718
- https://bugzilla.mozilla.org/show_bug.cgi?id=1907649
- https://bugzilla.mozilla.org/show_bug.cgi?id=1976329
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
- https://bugzilla.mozilla.org/show_bug.cgi?id=1843126
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896718
- https://bugzilla.mozilla.org/show_bug.cgi?id=1907649
- https://bugzilla.mozilla.org/show_bug.cgi?id=1976329
data_sensitivity:
- technical
notification_emails:
- tlong@mozilla.com
- nimbus-team@mozilla.com
expires: never
send_in_pings:
- background-update
- events
unenroll_failed:
type: event
description: >
Recorded when an unenrollment fails, including the reason for the failure.
extra_keys:
experiment:
type: string
description: The slug/unique identifier of the experiment
reason:
type: string
description: The reason for the unenrollment failure
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
data_sensitivity:
- technical
notification_emails:
- tlong@mozilla.com
- nimbus-team@mozilla.com
expires: never
send_in_pings:
- background-update
- events
exposure:
type: event
description: >
Recorded when a user actually observes an experimental treatment, or
would have observed an experimental treatment if they had been in a
branch that would have shown one.
extra_keys:
experiment:
type: string
description: The slug/unique identifier of the experiment
branch:
type: string
description: The branch slug/identifier that was randomly chosen
feature_id:
type: string
description: A unique identifier for the feature that was exposed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773563
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
data_sensitivity:
- technical
notification_emails:
- tlong@mozilla.com
- nimbus-team@mozilla.com
expires: never
send_in_pings:
- background-update
- events
validation_failed:
type: event
description: >
This records when validation of a recipe fails.
extra_keys:
experiment:
type: string
description: The slug/unique identifier of the experiment
reason:
type: string
description: >
Why the validation failed.
This will be one of the following reasons:
- "invalid-recipe": the recipe failed schema validation;
- "invalid-branch": a branch value failed schema validation;
- "l10n-missing-locale": the recipe is missing localizations for a
specific locale;
- "l10n-missing-entry": the recipe is missing specific localization
entries for a specific locale;
branch:
type: string
description: >
If reason == invalid-branch, the branch that failed validation.
locale:
type: string
description: >
If reason == missing-locale, the locale that was missing from the
localization table.
If reason == missing-l10n-entry, the locale that was missing the
localization entries.
l10n_ids:
type: string
description: >
If reason == missing-l10n-entry, a comma-separated list of missing
localization entries.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1762652
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
- https://bugzilla.mozilla.org/show_bug.cgi?id=1821092
- https://bugzilla.mozilla.org/show_bug.cgi?id=1928476
- https://bugzilla.mozilla.org/show_bug.cgi?id=1953530
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1762652
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781953
- https://bugzilla.mozilla.org/show_bug.cgi?id=1821092
- https://bugzilla.mozilla.org/show_bug.cgi?id=1928476
- https://bugzilla.mozilla.org/show_bug.cgi?id=1953530
data_sensitivity:
- technical
notification_emails:
- beth@mozilla.com
- project-nimbus@mozilla.com
expires: never
send_in_pings:
- background-update
- events
is_ready:
type: event
description: >
An event sent when Nimbus is ready — sent upon completion of each update of the recipes.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875510
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875510
data_sensitivity:
- technical
notification_emails:
- chumphreys@mozilla.com
- project-nimbus@mozilla.com
expires: 180
enrollment_status:
type: event
description: >
Recorded for each enrollment status each time the SDK completes application of pending experiments.
extra_keys:
slug:
type: string
description: The slug/unique identifier of the experiment
status:
type: string
description: The status of this enrollment
reason:
type: string
description: The reason the client is in the noted status
branch:
type: string
description: The branch slug/identifier that was randomly chosen (if the client is enrolled)
error_string:
type: string
description: If the enrollment resulted in an error, the associated error string
conflict_slug:
type: string
description: If the enrollment hit a feature conflict, the slug of the conflicting experiment/rollout
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817481
- https://bugzilla.mozilla.org/show_bug.cgi?id=1955169
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817481
- https://bugzilla.mozilla.org/show_bug.cgi?id=1955169
data_sensitivity:
- technical
notification_emails:
- chumphreys@mozilla.com
- project-nimbus@mozilla.com
expires: never
disabled: true
migration:
type: event
description: >
Triggered whenever a Nimbus migration is attempted, whether or not it succeeds.
extra_keys:
migration_id:
type: string
description: >
The name of the migration that ran.
success:
type: boolean
description: Whether or not the migration succeeded.
error_reason:
type: string
description: >
A string describing the error that occurred.
Reasons include:
- "unknown": an unknown exception occurred.
enrollments:
type: string
description: >
An optional string that includes any enrollments triggered by this relation
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937169
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937169
data_sensitivity:
- technical
notification_emails:
- beth@mozilla.com
- project-nimbus@mozilla.com
expires: never
startup_database_consistency:
type: event
description: >
Emitted during ExperimentManager startup with details about the
ExperimentDataStore compared to the NimbusEnrollments database table.
extra_keys:
total_db_count:
description: >
The total number of enrollments in the NimbusEnrollments table.
type: quantity
unit: enrollments
total_store_count:
description: >
The total number of enrollments in the ExperimentStore JSON file.
type: quantity
unit: enrollments
db_active_count:
description: >
The number of active enrollments in the NimbusEnrollments table.
type: quantity
unit: enrollments
store_active_count:
description: >
The number of active enrollments in the ExperimentStore JSON file.
type: quantity
unit: enrollments
trigger:
description: >
What triggered the database consistency check. This is either
"migration" or "startup".
type: string
primary:
description: >
Which store was used at startup. This is either "database" or
"jsonfile".
type: string
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956080
- https://bugzilla.mozilla.org/show_bug.cgi?id=1972427
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956082
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956080
- https://bugzilla.mozilla.org/show_bug.cgi?id=1972427
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956082
notification_emails:
- beth@mozilla.com
- project-nimbus@mozilla.com
data_sensitivity:
- technical
expires: never
database_write:
type: event
description: >
Emitted when writing to the NimbusEnrollments database table.
extra_keys:
success:
type: boolean
description: Whether or not the write suceeded.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956079
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956080
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956079
notification_emails:
- beth@mozilla.com
- project-nimbus@mozilla.com
data_sensitivity:
- technical
expires: never
remote_settings_sync:
type: event
description: >
Triggered whenever Nimbus attempts to get recipes from remote settings
collections, whether or not it succeeds.
extra_keys:
force_sync:
type: boolean
description: >
Whether or not a sync was forced when fetching recipes.
experiments_success:
type: boolean
description: >
Whether or not loading the experiments collection succeeded.
secure_experiments_success:
type: boolean
description: >
Whether or not loading the secure experiments collection succeeded.
experiments_empty:
type: boolean
description: >
Whether or not the experiments collection was empty.
secure_experiments_empty:
type: boolean
description: >
Whether or not the secure experiments collection was empty.
trigger:
type: string
description: >
The name of the event that triggered the sync.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968792
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968792
data_sensitivity:
- technical
notification_emails:
- relud@mozilla.com
- project-nimbus@mozilla.com
expires: never
normandy:
expose_nimbus_experiment:
type: event
description: >
This records an event at the moment the user is exposed to an
experiment treatment. The event is triggered either by the code
checking that a certain experiment feature is enabled or when that
feature value is used. This is different from enrollment or
experiment activation because it registers when a user actually gets
exposed to the experiment feature.
This event was generated to correspond to the Legacy Telemetry event
normandy.expose#nimbus_experiment.
bugs:
- https://bugzil.la/1675104
data_reviews:
- https://bugzil.la/1675104
notification_emails:
- ujet@mozilla.com
expires: never
extra_keys:
value:
description: >
The `value` of the event. Mirrors to the Legacy Telemetry
event's `value` parameter.
The experiment slug.
type: string
branchSlug:
description: >
The slug for the branch the user is enrolled in.
type: string
featureId:
description: >
The type of experiment variant the user was enrolled into.
type: string
telemetry_mirror: Normandy_Expose_NimbusExperiment
heartbeat:
flow_id:
type: uuid
description: |
An identifier for the rating flow, generated on the client.
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
offered:
type: datetime
time_unit: millisecond
description: |
When the survey was shown to the user.
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
learn_more:
type: datetime
time_unit: millisecond
description: |
When the user clicked on the "Learn More" link.
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
voted:
type: datetime
time_unit: millisecond
description: |
When the user voted.
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
engaged:
type: datetime
time_unit: millisecond
description: |
When the user clicked on the survey-provided button
(alternative to voting feature).
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
closed:
type: datetime
time_unit: millisecond
description: |
When the Heartbeat notification bar was closed.
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
expired:
type: datetime
time_unit: millisecond
description: |
When the survey expired, after 2 hours of no interaction.
(threshold regulated by `browser.uitour.surveyDuration` pref.)
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
window_closed:
type: datetime
time_unit: millisecond
description: |
When the user closed the Firefox window containing the survey,
or when the whole browser is shut down during the survey,
thus ending it.
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
score:
type: quantity
unit: star rating
description: |
The user's rating.
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
survey_id:
type: string
description: |
Identifies the specific survey.
May contain a `::` followed by the Normandy client id if the Heartbeat
recipe asks for it to be included.
e.g. "hb-out-of-date-en" or "new-user-survey-en-us::<the Normandy client id>"
bugs:
- https://bugzilla.mozilla.org/1963706
data_reviews:
- https://bugzilla.mozilla.org/1963706
data_sensitivity:
- technical
- highly_sensitive
notification_emails:
- normandy-notifications@mozilla.com
expires: never
send_in_pings:
- heartbeat
|