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
|
# 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 :: General'
browser.launched_to_handle:
system_notification:
type: event
description: >
Recorded when Firefox launches to complete a native notification popped by
a system (chrome privileged) alert. Windows-only at the time of writing.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1788960
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1788960#c10
data_sensitivity:
- interaction
notification_emails:
- nalexander@mozilla.com
- rtestard@mozilla.com
expires: never
extra_keys:
name:
description: >
The `name` of the system (chrome privileged) alert that Firefox was
launched to complete.
type: string
action:
description: >
The `action` of the system (chrome privileged) alert that Firefox was
launched to complete.
type: string
telemetry_mirror: BrowserLaunched_to_handle_SystemNotification_Toast
background_update:
reasons_to_not_update:
type: string_list
description: >
Records which error was causing the background updater to fail.
This list supercedes the `background-update.reason` in
`mozapps/update/metrics.yaml`
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1795471
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1795471
data_sensitivity:
- technical
notification_emails:
- install-update@mozilla.com
expires: never
send_in_pings:
- background-update
- metrics
lifetime: application
time_last_update_scheduled:
type: datetime
time_unit: day
description: >
Last time the background update was triggered.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1795471
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1795471
data_sensitivity:
- interaction
notification_emails:
- install-update@mozilla.com
expires: never
send_in_pings:
- background-update
- metrics
lifetime: application
start_menu:
manually_unpinned_since_last_launch:
type: event
description: >
Records whether Firefox has been unpinned from the Windows start menu
since last launch. This will only be recorded on MSIX due to the
underlying API only being available for packaged applications.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900035
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900035
data_sensitivity:
- interaction
notification_emails:
- install-update@mozilla.com
expires: never
send_in_pings:
- events
lifetime: ping
sslkeylogging:
enabled:
type: boolean
description: >
Records whether TLS key logging has been enabled via the environment
variable SSLKEYLOGFILE.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1918455
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1918455
data_sensitivity:
- technical
notification_emails:
- dkeeler@mozilla.com
expires: never
launch_on_login:
last_profile_disable_startup:
type: event
description: >
Recorded when Launch on login is disabled because the start with
last profile setting has been disabled.
This event was generated to correspond to the Legacy Telemetry event
launch_on_login.last_profile_disable#startup.
bugs:
- https://bugzil.la/1858223
data_reviews:
- https://bugzil.la/1858223
notification_emails:
- nalexander@mozilla.com
expires: never
telemetry_mirror: Launch_on_login_LastProfileDisable_Startup
upgrade_dialog:
trigger_reason:
type: event
description: >
Triggering behaviors of the upgrade dialog. Value indicates which
condition failed or all satisfied.
This event was generated to correspond to the Legacy Telemetry event
upgrade_dialog.trigger#reason.
bugs:
- https://bugzil.la/1697222
data_reviews:
- https://bugzil.la/1697222
notification_emails:
- edilee@mozilla.com
expires: never
extra_keys:
value:
description: >
The `value` of the event. Mirrors to the Legacy Telemetry
event's `value` parameter.
type: string
telemetry_mirror: Upgrade_dialog_Trigger_Reason
browser.startup:
abouthome_cache_result:
type: quantity
description: >
How the about:home startup cache functioned on startup.
0: Result value was never set (error case)
1: Cache did not exist
2: Cache page stream was corrupt / inaccessible
3: Cache script stream was corrupt / inaccessible
4: Cache was invalidated by a version bump
5: Cache was valid, but read too late to be useful.
6: Cache was valid and used.
7: Cache is disabled.
8: User did not load about:home on its own by default.
9: Cache is disabled because about:newtab preloading is disabled.
This metric was generated to correspond to the Legacy Telemetry
scalar browser.startup.abouthome_cache_result.
bugs:
- https://bugzil.la/1622263
- https://bugzil.la/1614351
- https://bugzil.la/1683101
- https://bugzil.la/1714258
- https://bugzil.la/1730042
- https://bugzil.la/1754641
- https://bugzil.la/1781978
- https://bugzil.la/1811151
- https://bugzil.la/1841926
data_reviews:
- https://bugzil.la/1622263
- https://bugzil.la/1614351
- https://bugzil.la/1683101
- https://bugzil.la/1714258
- https://bugzil.la/1730042
- https://bugzil.la/1754641
- https://bugzil.la/1781978
- https://bugzil.la/1811151
- https://bugzil.la/1841926
notification_emails:
- mconley@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
unit: CACHE_RESULT_SCALARS
telemetry_mirror: BROWSER_STARTUP_ABOUTHOME_CACHE_RESULT
no_lint:
- COMMON_PREFIX
abouthome_cache_shutdownwrite:
type: boolean
description: >
True if the about:home startup cache was written via the
AsyncShutdown blocker.
This metric was generated to correspond to the Legacy Telemetry
scalar browser.startup.abouthome_cache_shutdownwrite.
bugs:
- https://bugzil.la/1622263
- https://bugzil.la/1614351
- https://bugzil.la/1683101
- https://bugzil.la/1714258
- https://bugzil.la/1730042
- https://bugzil.la/1754641
- https://bugzil.la/1781978
- https://bugzil.la/1811151
- https://bugzil.la/1841926
data_reviews:
- https://bugzil.la/1622263
- https://bugzil.la/1614351
- https://bugzil.la/1683101
- https://bugzil.la/1714258
- https://bugzil.la/1730042
- https://bugzil.la/1754641
- https://bugzil.la/1781978
- https://bugzil.la/1811151
- https://bugzil.la/1841926
notification_emails:
- mconley@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: BROWSER_STARTUP_ABOUTHOME_CACHE_SHUTDOWNWRITE
no_lint:
- COMMON_PREFIX
kiosk_mode:
type: boolean
description: >
True when the browser was started in kiosk mode.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1914581
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1914581
data_sensitivity:
- technical
notification_emails:
- rtestard@mozilla.com
expires: never
lifetime: application
datasanitization:
privacy_sanitize_sanitize_on_shutdown:
type: boolean
description: >
A boolean reporting the value of the
privacy.sanitize.sanitizeOnShutdown pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_sanitize_sanitizeOnShutdown.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_SANITIZE_SANITIZEONSHUTDOWN
privacy_clear_on_shutdown_cookies:
type: boolean
description: >
A boolean reporting the value of the privacy.clearOnShutdown.cookies
pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_clearOnShutdown_cookies.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_CLEARONSHUTDOWN_COOKIES
privacy_clear_on_shutdown_history:
type: boolean
description: >
A boolean reporting the value of the privacy.clearOnShutdown.history
pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_clearOnShutdown_history.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_CLEARONSHUTDOWN_HISTORY
privacy_clear_on_shutdown_formdata:
type: boolean
description: >
A boolean reporting the value of the
privacy.clearOnShutdown.formdata pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_clearOnShutdown_formdata.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_CLEARONSHUTDOWN_FORMDATA
privacy_clear_on_shutdown_downloads:
type: boolean
description: >
A boolean reporting the value of the
privacy.clearOnShutdown.downloads pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_clearOnShutdown_downloads.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_CLEARONSHUTDOWN_DOWNLOADS
privacy_clear_on_shutdown_cache:
type: boolean
description: >
A boolean reporting the value of the privacy.clearOnShutdown.cache
pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_clearOnShutdown_cache.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_CLEARONSHUTDOWN_CACHE
privacy_clear_on_shutdown_sessions:
type: boolean
description: >
A boolean reporting the value of the
privacy.clearOnShutdown.sessions pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_clearOnShutdown_sessions.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_CLEARONSHUTDOWN_SESSIONS
privacy_clear_on_shutdown_offline_apps:
type: boolean
description: >
A boolean reporting the value of the
privacy.clearOnShutdown.offlineApps pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_clearOnShutdown_offlineApps.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_CLEARONSHUTDOWN_OFFLINEAPPS
privacy_clear_on_shutdown_site_settings:
type: boolean
description: >
A boolean reporting the value of the
privacy.clearOnShutdown.siteSettings pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_clearOnShutdown_siteSettings.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_CLEARONSHUTDOWN_SITESETTINGS
privacy_clear_on_shutdown_open_windows:
type: boolean
description: >
A boolean reporting the value of the
privacy.clearOnShutdown.openWindows pref.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.privacy_clearOnShutdown_openWindows.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
notification_emails:
- ewright@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
telemetry_mirror: DATASANITIZATION_PRIVACY_CLEARONSHUTDOWN_OPENWINDOWS
session_permission_exceptions:
type: quantity
description: >
A count of how many "session" cookie exceptions a user has set.
This metric was generated to correspond to the Legacy Telemetry
scalar datasanitization.session_permission_exceptions.
bugs:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
- https://bugzil.la/1744559
data_reviews:
- https://bugzil.la/1589753
- https://bugzil.la/1617241
- https://bugzil.la/1645089
- https://bugzil.la/1678210
- https://bugzil.la/1744559
notification_emails:
- emz@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
unit: unknown
telemetry_mirror: DATASANITIZATION_SESSION_PERMISSION_EXCEPTIONS
startup:
is_cold:
type: boolean
description: >
Whether or not this startup is the first startup since OS reboot
(according to our best guess.)
This metric was generated to correspond to the Legacy Telemetry
scalar startup.is_cold.
bugs:
- https://bugzil.la/1542833
data_reviews:
- https://bugzil.la/1542833
notification_emails:
- dothayer@mozilla.com
expires: never
telemetry_mirror: STARTUP_IS_COLD
seconds_since_last_os_restart:
type: quantity
description: >
The time in seconds between the first browser window loading, and
the time the OS started. This can give us an indication of whether
starting the browser may have been the first thing the user did
after starting their computer.
This metric was generated to correspond to the Legacy Telemetry
scalar startup.seconds_since_last_os_restart.
bugs:
- https://bugzil.la/1654063
data_reviews:
- https://bugzil.la/1654063
notification_emails:
- dothayer@mozilla.com
expires: never
unit: seconds
telemetry_mirror: STARTUP_SECONDS_SINCE_LAST_OS_RESTART
os.environment:
launch_method:
type: string
description: >
Records how Firefox was started on Windows. Currently will be one of
"Desktop", "DesktopPrivate", "StartMenu" (including pins),
"StartMenuPrivate", "Taskbar", "TaskbarPrivate", "OtherShortcut", or
"Other"
This metric was generated to correspond to the Legacy Telemetry
scalar os.environment.launch_method.
bugs:
- https://bugzil.la/1685213
- https://bugzil.la/1725298
- https://bugzil.la/1754656
data_reviews:
- https://bugzil.la/1685213
- https://bugzil.la/1725298
- https://bugzil.la/1754656
notification_emails:
- application-update-telemetry-alerts@mozilla.com
- rtestard@mozilla.com
- shong@mozilla.com
expires: never
telemetry_mirror: OS_ENVIRONMENT_LAUNCH_METHOD
launched_to_handle:
type: labeled_counter
description: >
Records counts for when Firefox was launched afresh (i.e., was not
already running) to handle a file type or protocol with `-osint -url
...`. The result is split into keys which represent the file
extension: currently, the set of file types Firefox registers to
handle, namely ".avif", ".htm", ".html", ".pdf", ".shtml", ".xht",
".xhtml", ".svg", ".webp", and the set of protocol schemes that
Firefox registers to handle, namely "about", "http", "https",
"mailto". If Firefox was launched to handle a file type or protocol
it does not register to handle by default, the count is recorded as
".<other extension>" or "<other protocol>", respectively (neither of
which are valid extension or protocol identifiers).
This metric was generated to correspond to the Legacy Telemetry
scalar os.environment.launched_to_handle.
bugs:
- https://bugzil.la/1243603
- https://bugzil.la/1781984
data_reviews:
- https://bugzil.la/1243603
- https://bugzil.la/1781984
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: OS_ENVIRONMENT_LAUNCHED_TO_HANDLE
invoked_to_handle:
type: labeled_counter
description: >
Records counts for when Firefox was invoked (i.e., was already
running and was not launched) to handle a file type or protocol with
`-osint -url ...`. The result is split into keys which represent
the file extension: currently, the set of file types Firefox
registers to handle, namely ".avif", ".htm", ".html", ".pdf",
".shtml", ".xht", ".xhtml", ".svg", ".webp", and the set of protocol
schemes that Firefox registers to handle, namely "about", "http",
"https", "mailto". If Firefox was invoked to handle a file type or
protocol it does not register to handle by default, the count is
recorded as ".<other extension>" or "<other protocol>", respectively
(neither of which are valid extension or protocol identifiers).
This metric was generated to correspond to the Legacy Telemetry
scalar os.environment.invoked_to_handle.
bugs:
- https://bugzil.la/1243603
- https://bugzil.la/1781984
data_reviews:
- https://bugzil.la/1243603
- https://bugzil.la/1781984
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: OS_ENVIRONMENT_INVOKED_TO_HANDLE
is_default_handler:
type: labeled_boolean
description: >
Records whether Firefox was the default handler for particular file
types or protocols. The result is split into keys which represent
the file extension or scheme: currently, a subset of the file types
Firefox registers to handle, namely ".pdf" and "mailto" as protocol.
In the future, more file types may be recorded.
This metric was generated to correspond to the Legacy Telemetry
scalar os.environment.is_default_handler.
bugs:
- https://bugzil.la/1743914
- https://bugzil.la/1781984
- https://bugzil.la/1842290
data_reviews:
- https://bugzil.la/1743914
- https://bugzil.la/1781984
- https://bugzil.la/1842290
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: OS_ENVIRONMENT_IS_DEFAULT_HANDLER
is_kept_in_dock:
type: boolean
description: >
Whether this app was kept in macOS Dock on startup
This metric was generated to correspond to the Legacy Telemetry
scalar os.environment.is_kept_in_dock.
bugs:
- https://bugzil.la/1715348
data_reviews:
- https://bugzil.la/1715348
notification_emails:
- elee@mozilla.com
- shong@mozilla.com
expires: never
telemetry_mirror: OS_ENVIRONMENT_IS_KEPT_IN_DOCK
is_taskbar_pinned:
type: boolean
description: >
Whether the non-Private Browsing version of this app was pinned to
taskbar on startup
This metric was generated to correspond to the Legacy Telemetry
scalar os.environment.is_taskbar_pinned.
bugs:
- https://bugzil.la/1685213
- https://bugzil.la/1725298
data_reviews:
- https://bugzil.la/1685213
- https://bugzil.la/1725298
notification_emails:
- application-update-telemetry-alerts@mozilla.com
- shong@mozilla.com
expires: never
telemetry_mirror: OS_ENVIRONMENT_IS_TASKBAR_PINNED
is_taskbar_pinned_private:
type: boolean
description: >
Whether the Private Browsing version of this app was pinned to
taskbar on startup
This metric was generated to correspond to the Legacy Telemetry
scalar os.environment.is_taskbar_pinned_private.
bugs:
- https://bugzil.la/1751038
data_reviews:
- https://bugzil.la/1751038
notification_emails:
- application-update-telemetry-alerts@mozilla.com
- shong@mozilla.com
expires: never
telemetry_mirror: OS_ENVIRONMENT_IS_TASKBAR_PINNED_PRIVATE
security:
https_only_mode_enabled:
type: quantity
description: >
Measures user retention of the HTTPS-Only Mode. 0 = never enabled, 1
= enabled, 2 = disabled (but was enabled)
This metric was generated to correspond to the Legacy Telemetry
scalar security.https_only_mode_enabled.
bugs:
- https://bugzil.la/1620244
data_reviews:
- https://bugzil.la/1620244
notification_emails:
- julianwels@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
unit: unknown
telemetry_mirror: SECURITY_HTTPS_ONLY_MODE_ENABLED
https_only_mode_enabled_pbm:
type: quantity
description: >
Measures user retention of the HTTPS-Only Mode in Private Browsing.
0 = https-only never enabled in PBM, 1 = https-only enabled in PBM,
2 = https-only disabled in PBM (but was enabled)
This metric was generated to correspond to the Legacy Telemetry
scalar security.https_only_mode_enabled_pbm.
bugs:
- https://bugzil.la/1647719
data_reviews:
- https://bugzil.la/1647719
notification_emails:
- julianwels@mozilla.com
- ckerschb@mozilla.com
- seceng-telemetry@mozilla.com
expires: never
unit: unknown
telemetry_mirror: SECURITY_HTTPS_ONLY_MODE_ENABLED_PBM
global_privacy_control_enabled:
type: quantity
description: >
Measures user retention of the Global Privacy Control. 0 = never
enabled, 1 = enabled, 2 = disabled (but was enabled)
This metric was generated to correspond to the Legacy Telemetry
scalar security.global_privacy_control_enabled.
bugs:
- https://bugzil.la/1734185
data_reviews:
- https://bugzil.la/1734185
notification_emails:
- seceng-telemetry@mozilla.com
expires: never
unit: unknown
telemetry_mirror: SECURITY_GLOBAL_PRIVACY_CONTROL_ENABLED
primary.password:
enabled:
type: boolean
description: >
If a primary-password is enabled for this profile.
Set soon after browser startup.
Does not update if a primary password is added or removed after startup.
bugs:
- https://bugzil.la/1936036
data_reviews:
- https://bugzil.la/1936036
notification_emails:
- mtigley@mozilla.com
expires: never
telemetry_mirror: PRIMARY_PASSWORD_ENABLED
browser:
is_user_default:
type: labeled_counter
description: >
Whether Firefox is the system default browser on startup. A true value is
also recorded here, and a false value is recorded to
set_default_error, if a user clicked 'Use Firefox as my default
browser' on an in-product prompt. (Note that on Windows 8+ the latter
action opens the right settings dialog but does not actually change the
default browser without further user action.) On Windows, 'system default
browser' is operationalized as whether Firefox is the default HTTP
protocol handler.
This metric was generated to correspond to the Legacy Telemetry boolean
histogram BROWSER_IS_USER_DEFAULT.
labels:
- "false"
- "true"
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=855928
- https://bugzilla.mozilla.org/show_bug.cgi?id=1641713
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=855928
- https://bugzilla.mozilla.org/show_bug.cgi?id=1641713
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: h#BROWSER_IS_USER_DEFAULT
is_user_default_error:
type: labeled_counter
description: >
True if the browser was unable to determine if the browser was set as
default.
This metric was generated to correspond to the Legacy Telemetry boolean
histogram BROWSER_IS_USER_DEFAULT_ERROR.
labels:
- "false"
- "true"
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: h#BROWSER_IS_USER_DEFAULT_ERROR
set_default_dialog_prompt_rawcount:
type: custom_distribution
description: >
The number of times that a profile has seen the 'Set Default Browser'
dialog.
This metric was generated to correspond to the Legacy Telemetry
exponential histogram BROWSER_SET_DEFAULT_DIALOG_PROMPT_RAWCOUNT.
range_min: 1
range_max: 250
bucket_count: 15
histogram_type: exponential
unit: prompts
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: BROWSER_SET_DEFAULT_DIALOG_PROMPT_RAWCOUNT
set_default_always_check:
type: labeled_counter
description: >
True if the profile has `browser.shell.checkDefaultBrowser` set to true.
This metric was generated to correspond to the Legacy Telemetry boolean
histogram BROWSER_SET_DEFAULT_ALWAYS_CHECK.
labels:
- "false"
- "true"
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: h#BROWSER_SET_DEFAULT_ALWAYS_CHECK
set_default_result:
type: custom_distribution
description: >
Result of the Set Default Browser dialog. After Firefox 89 the these
values are: (0=Use Firefox + 'Don't ask again' checked, 1=Use Firefox +
'Don't ask again' unchecked, 2=Not Now + 'Don't ask again' checked, 3=Not
Now + 'Don't ask again' unchecked). Before Firefox 89 these values were:
(0=Use Firefox + 'Always perform check' unchecked, 1=Use Firefox + 'Always
perform check' checked, 2=Not Now + 'Always perform check' unchecked,
3=Not Now + 'Always perform check' checked).
This metric was generated to correspond to the Legacy Telemetry enumerated
histogram BROWSER_SET_DEFAULT_RESULT.
range_min: 0
range_max: 4
bucket_count: 5
histogram_type: linear
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: BROWSER_SET_DEFAULT_RESULT
set_default_error:
type: labeled_counter
description: >
True if the browser was unable to set Firefox as the default browser
This metric was generated to correspond to the Legacy Telemetry boolean
histogram BROWSER_SET_DEFAULT_ERROR.
labels:
- "false"
- "true"
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1944631
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: h#BROWSER_SET_DEFAULT_ERROR
set_default_pdf_handler_user_choice_result:
type: labeled_counter
description: >
Result of each attempt to set the default browser with
SetDefaultExtensionHandlersUserChoice() for pdf extension
This metric was generated to correspond to the Legacy Telemetry
categorical histogram BROWSER_SET_DEFAULT_PDF_HANDLER_USER_CHOICE_RESULT.
labels:
- Success
- ErrProgID
- ErrHash
- ErrLaunchExe
- ErrExeTimeout
- ErrExeProgID
- ErrExeHash
- ErrExeRejected
- ErrExeOther
- ErrOther
- ErrBuild
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1805509
- https://bugzilla.mozilla.org/show_bug.cgi?id=1883466
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1805509
- https://bugzilla.mozilla.org/show_bug.cgi?id=1883466
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: h#BROWSER_SET_DEFAULT_PDF_HANDLER_USER_CHOICE_RESULT
set_default_user_choice_result:
type: labeled_counter
description: >
Result of each attempt to set the default browser with
SetDefaultBrowserUserChoice()
This metric was generated to correspond to the Legacy Telemetry
categorical histogram BROWSER_SET_DEFAULT_USER_CHOICE_RESULT.
labels:
- Success
- ErrProgID
- ErrHash
- ErrLaunchExe
- ErrExeTimeout
- ErrExeProgID
- ErrExeHash
- ErrExeRejected
- ErrExeOther
- ErrOther
- ErrBuild
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1703578
- https://bugzilla.mozilla.org/show_bug.cgi?id=1736631
- https://bugzilla.mozilla.org/show_bug.cgi?id=1791928
- https://bugzilla.mozilla.org/show_bug.cgi?id=1881397
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1703578
- https://bugzilla.mozilla.org/show_bug.cgi?id=1736631
- https://bugzilla.mozilla.org/show_bug.cgi?id=1791928
- https://bugzilla.mozilla.org/show_bug.cgi?id=1881397
notification_emails:
- application-update-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: h#BROWSER_SET_DEFAULT_USER_CHOICE_RESULT
attribution_errors:
type: labeled_counter
description: >
Count for the number of errors encountered trying to determine attribution
data: on Windows, from the installers (stub and full); on macOS, from an
extended attributed on the .app bundle.
This metric was generated to correspond to the Legacy Telemetry
categorical histogram BROWSER_ATTRIBUTION_ERRORS.
labels:
- read_error
- decode_error
- write_error
- quarantine_error
- empty_error
- null_error
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1621402
- https://bugzilla.mozilla.org/show_bug.cgi?id=1525076
- https://bugzilla.mozilla.org/show_bug.cgi?id=1874944
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1621402
- https://bugzilla.mozilla.org/show_bug.cgi?id=1525076
- https://bugzilla.mozilla.org/show_bug.cgi?id=1874944
notification_emails:
- aoprea@mozilla.com
expires: never
telemetry_mirror: h#BROWSER_ATTRIBUTION_ERRORS
default_at_launch:
type: boolean
lifetime: application
description: |
Whether the shell service identified this app as the default browser.
Checked once near startup.
On Windows, this is operationalized as whether Firefox is the default
HTTP protocol handler and the default HTML file handler.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1950389
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1950389
notification_emails:
- application-update-telemetry-alerts@mozilla.com
data_sensitivity:
- technical
expires: never
|