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
|
# 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 :: Sync'
synced_tabs:
click_fxa_avatar_menu:
type: event
description: >
Record how users access and use synced tabs component
This event was generated to correspond to the Legacy Telemetry event
synced_tabs.click#fxa_avatar_menu.
bugs: &synced_tabs_click_bugs
- https://bugzil.la/1756252
data_reviews: &synced_tabs_click_data_reviews
- https://bugzil.la/1756252
notification_emails: &synced_tabs_click_emails
- sync-dev@mozilla.org
expires: never
extra_keys: &synced_tabs_click_extra
tab_pos:
description: >
position of the tab clicked
type: string
filter:
description: >
was there a filter enabled
type: string
telemetry_mirror: Synced_tabs_Click_FxaAvatarMenu
no_lint:
- COMMON_PREFIX
click_fxa_app_menu:
type: event
description: >
Record how users access and use synced tabs component
This event was generated to correspond to the Legacy Telemetry event
synced_tabs.click#fxa_app_menu.
bugs: *synced_tabs_click_bugs
data_reviews: *synced_tabs_click_data_reviews
notification_emails: *synced_tabs_click_emails
expires: never
extra_keys: *synced_tabs_click_extra
telemetry_mirror: Synced_tabs_Click_FxaAppMenu
no_lint:
- COMMON_PREFIX
click_synced_tabs_sidebar:
type: event
description: >
Record how users access and use synced tabs component
This event was generated to correspond to the Legacy Telemetry event
synced_tabs.click#synced_tabs_sidebar.
bugs: *synced_tabs_click_bugs
data_reviews: *synced_tabs_click_data_reviews
notification_emails: *synced_tabs_click_emails
expires: never
extra_keys: *synced_tabs_click_extra
telemetry_mirror: Synced_tabs_Click_SyncedTabsSidebar
no_lint:
- COMMON_PREFIX
fxa_avatar_menu:
click_account_settings:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#account_settings.
bugs: &fxa_avatar_menu_click_bugs
- https://bugzil.la/1524665
- https://bugzil.la/1585459
- https://bugzil.la/1606203
data_reviews: &fxa_avatar_menu_click_data_reviews
- https://bugzil.la/1524665
- https://bugzil.la/1585459
- https://bugzil.la/1606203
notification_emails: &fxa_avatar_menu_click_emails
- vbudhram@mozilla.com
- loines@mozilla.com
expires: never
extra_keys: &fxa_avatar_menu_click_extra
fxa_status:
description: >
The current state of the user. Possible states are "not_configured", "unverified", "signedin" and "login_failed".
type: string
fxa_avatar:
description: >
Boolean for whether or not account has set an avatar
type: string
fxa_sync_on:
description: >
Boolean for whether or not sync was configured at the time the event fired.
type: string
telemetry_mirror: Fxa_avatar_menu_Click_AccountSettings
no_lint:
- COMMON_PREFIX
click_cad:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#cad.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_Cad
no_lint:
- COMMON_PREFIX
click_login:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#login.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_Login
no_lint:
- COMMON_PREFIX
click_send_tab:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#send_tab.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_SendTab
no_lint:
- COMMON_PREFIX
click_sync_now:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#sync_now.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_SyncNow
no_lint:
- COMMON_PREFIX
click_sync_settings:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#sync_settings.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_SyncSettings
no_lint:
- COMMON_PREFIX
click_sync_tabs:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#sync_tabs.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_SyncTabs
no_lint:
- COMMON_PREFIX
click_sync_tabs_sidebar:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#sync_tabs_sidebar.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_SyncTabsSidebar
no_lint:
- COMMON_PREFIX
click_toolbar_icon:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#toolbar_icon.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_ToolbarIcon
no_lint:
- COMMON_PREFIX
click_unver_sync_settings:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#unver_sync_settings.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_UnverSyncSettings
no_lint:
- COMMON_PREFIX
click_open_monitor:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#open_monitor.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_OpenMonitor
no_lint:
- COMMON_PREFIX
click_open_send:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#open_send.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_OpenSend
no_lint:
- COMMON_PREFIX
click_monitor_cta:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#monitor_cta.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_MonitorCta
no_lint:
- COMMON_PREFIX
click_relay_cta:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#relay_cta.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_RelayCta
no_lint:
- COMMON_PREFIX
click_vpn_cta:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#vpn_cta.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_VpnCta
no_lint:
- COMMON_PREFIX
click_sync_cta:
type: event
description: >
This is recorded on interactions with the FxA avatar menu on the
toolbar
This event was generated to correspond to the Legacy Telemetry event
fxa_avatar_menu.click#sync_cta.
bugs: *fxa_avatar_menu_click_bugs
data_reviews: *fxa_avatar_menu_click_data_reviews
notification_emails: *fxa_avatar_menu_click_emails
expires: never
extra_keys: *fxa_avatar_menu_click_extra
telemetry_mirror: Fxa_avatar_menu_Click_SyncCta
no_lint:
- COMMON_PREFIX
fxa_app_menu:
click_account_settings:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#account_settings.
bugs: &fxa_app_menu_click_bugs
- https://bugzil.la/1542334
- https://bugzil.la/1606203
data_reviews: &fxa_app_menu_click_data_reviews
- https://bugzil.la/1542334
- https://bugzil.la/1606203
notification_emails: &fxa_app_menu_click_emails
- vbudhram@mozilla.com
- loines@mozilla.com
expires: never
extra_keys: &fxa_app_menu_click_extra
fxa_status:
description: >
The current state of the user. Possible states are "not_configured", "unverified", "signedin" and "login_failed".
type: string
fxa_avatar:
description: >
Boolean for whether or not account has set an avatar
type: string
fxa_sync_on:
description: >
Boolean for whether or not sync was configured at the time the event fired.
type: string
telemetry_mirror: Fxa_app_menu_Click_AccountSettings
no_lint:
- COMMON_PREFIX
click_cad:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#cad.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_Cad
no_lint:
- COMMON_PREFIX
click_login:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#login.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_Login
no_lint:
- COMMON_PREFIX
click_send_tab:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#send_tab.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_SendTab
no_lint:
- COMMON_PREFIX
click_sync_now:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#sync_now.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_SyncNow
no_lint:
- COMMON_PREFIX
click_sync_settings:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#sync_settings.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_SyncSettings
no_lint:
- COMMON_PREFIX
click_sync_tabs:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#sync_tabs.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_SyncTabs
no_lint:
- COMMON_PREFIX
click_sync_tabs_sidebar:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#sync_tabs_sidebar.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_SyncTabsSidebar
no_lint:
- COMMON_PREFIX
click_toolbar_icon:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#toolbar_icon.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_ToolbarIcon
no_lint:
- COMMON_PREFIX
click_unver_sync_settings:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#unver_sync_settings.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_UnverSyncSettings
no_lint:
- COMMON_PREFIX
click_open_monitor:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#open_monitor.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_OpenMonitor
no_lint:
- COMMON_PREFIX
click_open_send:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#open_send.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_OpenSend
no_lint:
- COMMON_PREFIX
click_monitor_cta:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#monitor_cta.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_MonitorCta
no_lint:
- COMMON_PREFIX
click_relay_cta:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#relay_cta.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_RelayCta
no_lint:
- COMMON_PREFIX
click_vpn_cta:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#vpn_cta.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_VpnCta
no_lint:
- COMMON_PREFIX
click_sync_cta:
type: event
description: >
This is recorded on interactions with the FxA menu in the app
(hamburger) menu
This event was generated to correspond to the Legacy Telemetry event
fxa_app_menu.click#sync_cta.
bugs: *fxa_app_menu_click_bugs
data_reviews: *fxa_app_menu_click_data_reviews
notification_emails: *fxa_app_menu_click_emails
expires: never
extra_keys: *fxa_app_menu_click_extra
telemetry_mirror: Fxa_app_menu_Click_SyncCta
no_lint:
- COMMON_PREFIX
deletion.request:
sync_device_id:
type: string
description: >
An identifier used by sync ping, to identify the current Firefox
profile for a specific Account.
This metric was generated to correspond to the Legacy Telemetry
scalar deletion.request.sync_device_id.
bugs:
- https://bugzil.la/1604844
data_reviews:
- https://bugzil.la/1604844
notification_emails:
- rfkelly@mozilla.com
- sync-team@mozilla.com
expires: never
send_in_pings: ["deletion-request"]
telemetry_mirror: DELETION_REQUEST_SYNC_DEVICE_ID
sync_merge_dialog:
clicked:
type: event
description: >
Event to record that showed the user a warning for potentially merging
data from multiple accounts and recorded
notification_emails:
- sync-team@mozilla.com
bugs:
- https://bugzilla.mozilla.org/1929705/
data_reviews:
- https://bugzilla.mozilla.org/1929705/
expires: never
extra_keys:
option_clicked:
description: >
Which option the user actually clicked. Which can be "cancel",
"continue", "create-profile" or "switch-profile"
type: string
variant_shown:
description: >
Which variant we showed the user. Which can be "sync-warning", "sync-warning-allow-merge",
"merge-warning", "merge-warning-allow-merge", "old-merge"
type: string
sync:
device_count_desktop:
type: custom_distribution
description: >
Number of desktop devices (including this device) associated with this
Sync account. Recorded each time Sync successfully completes the 'clients'
engine.
This metric was generated to correspond to the Legacy Telemetry enumerated
histogram WEAVE_DEVICE_COUNT_DESKTOP.
range_min: 0
range_max: 10
bucket_count: 11
histogram_type: linear
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1232050
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1232050
notification_emails:
- sync-dev@mozilla.org
expires: never
telemetry_mirror: WEAVE_DEVICE_COUNT_DESKTOP
no_lint:
- COMMON_PREFIX
device_count_mobile:
type: custom_distribution
description: >
Number of mobile devices associated with this Sync account. Recorded each
time Sync successfully completes the 'clients' engine.
This metric was generated to correspond to the Legacy Telemetry enumerated
histogram WEAVE_DEVICE_COUNT_MOBILE.
range_min: 0
range_max: 10
bucket_count: 11
histogram_type: linear
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1232050
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1232050
notification_emails:
- sync-dev@mozilla.org
expires: never
telemetry_mirror: WEAVE_DEVICE_COUNT_MOBILE
no_lint:
- COMMON_PREFIX
maintenance_fix_bookmarks:
type: event
description: |
If the last sync failed and we ran maintainenance and this sync succeeded,
maintenance likely fixed the issue.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
maintenance_run_bookmarks:
type: event
description: |
Bookmark sync failed, and it's been long enough since our last maintenance,
so we're running Places maintenance.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
sync.client:
sendcommand:
type: event
description: |
Records that Sync wrote a remote "command" to another client.
These are sync-specific commands for that other client to take some
action such as resetting Sync on that client or wiping the local sync
data.
(It is not used for FxA-specific commands like opening/closing tabs.)
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
extra_keys:
flow_id:
description: |
A GUID which uniquely identifies this command invocation.
This GUID is the same for every device the command is sent to.
type: string
reason:
description: |
Sent when a remote client needs to take some action because of some
event which happened on this device, such as restoring bookmarks,
which means remote clients need to wipe local bookmarks before syncing
the newly restored set.
e.g. "bookmark-restore", "wipe-remote"
type: string
command:
description: |
The specific command being written.
type: string
device_id:
description: |
A GUID which identifies the device the command is being sent to.
type: string
server_time: &sync_server_time_extra
description: |
The most recent unix timestamp sent from the sync server via the
`X-Weave-Timestamp` HTTP header.
Omitted in cases where the client has not yet made a request of the
server and whenever else it's unavailable.
Included to improve flow analysis across multiple clients.
type: string
processcommand:
type: event
description: |
When the local client has any remote commands and we're processing them.
Almost identical to `sync.client.sendcommand` but is recorded by the
receiving device rather than the sending device.
See `sync.client.sendcommand` for more details.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
extra_keys:
flow_id:
description: |
A GUID which uniquely identifies this command invocation.
The value for this GUID will be the same as the `flow_id` sent to the
client via `sync.client.sendcommand`.
type: string
command:
description: |
The specific command being processed.
type: string
server_time: *sync_server_time_extra
syncs:
discarded:
type: quantity
unit: discarded syncs
description: |
How many syncs happened which were not reported in detail
due to being over the number of syncs we report detailed information for.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
hashed_fxa_uid:
type: string
description: |
Hashed FxA unique ID, or string of 32 zeroes.
If this changes between syncs, the "sync" ping is submitted with reason "idchanged".
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
hashed_device_id:
type: string
description: |
Hashed FxA device ID, hex string of 64 characters.
Not included if the user is not logged in.
If this changes between syncs, the "sync" ping is submitted with reason "idchanged".
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
session_start_date:
type: datetime
time_unit: hour
description: |
When the sync telemetry session begins (the `SyncTelemetryImpl`
constructor runs).
Typically useful for ordering "sync" pings.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
sync_node_type:
type: string
description: |
The "node type" as reported by the token server.
This will not change from sync to sync.
May not be present if the token server omits this information.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
syncs:
type: object
description: |
Recorded syncs.
The "sync" ping is not submitted if this is empty.
```text
[{
when: integer ms since epoch,
took: integer ms duration,
didLogin: true if first sync after login,
why:
- "startup" if first sync after browser startup
- "schedule" if it's been too long since the last sync
- "score" if one of sync's trackers has a high score value indicating many changes since the last sync
- "user" if the user manually triggered the sync
- "tabs" if the user opened the synced tabs sidebar, triggering a sync
failureReason: { // if there was an error
name: {"httperror"|"networkerror"|...},
code: error code for "httperror" and "networkerror" only,
error: error string for "othererror" and "unexpectederror" only,
from: for "autherror" only,
},
devices: [{ // excluded if we couldn't get a valid uid or local device id
os: provided by `Services.appinfo.OS`,
version: provided by `Services.appinfo.version`,
id: hashed FxA device id,
device_type: e.g. "mobile", "tv", etc.,
syncID: hashed sync device id for device, if user is a sync user,
(May be different from the FxA device ID)
}, ...],
status: {
sync: value of the Status.sync property, unless we succeeded,
service: value of Status.service, unless we succeeded,
},
engines: [{
name: Engine name: "bookmarks", "tabs", etc.,
took: milliseconds (optional),
status: value of Status.engines, if not success,
incoming: {
applied: number of records applied,
succeeded: number of records that applied without error,
failed: number of records that failed to apply,
failedReasons: [{
name: Error message when trying to apply the record,
count: How many times this particular error happened,
}, ...],
},
outgoing: [{
sent: Number of outgoing records sent,
failed: Number that failed to send,
failedReasons: [{
name: Error message while trying to send the record,
count: How many times this particular error happened,
}],
}, ...],
failureReason: { // if there was an error for this specific engine
name: {"httperror"|"networkerror"|...},
code: error code for "httperror" and "networkerror" only,
error: error string for "othererror" and "unexpectederror" only,
from: for "autherror" only,
},
steps: [{ // Timings and counts for detailed steps that the bookmarks engine took
name: Step name (e.g. "clients", "tabs", "bookmarks-buffered" see `ProgressTracker.STEPS`),
took: milliseconds the step took to execute,
counts: [{
name: Counter name (e.g. "items", "fetchLocalTree"),
count: Counter value,
}, ...],
}, ...],
validation: { // If the engine ran validation on itself.
version: integer version,
checked: how many records were checked,
took: non-monotonic integer duration in millis,
problems: [{
name: the problem (e.g. "parentChildDisagreements", "missingChildren"),
count: the records with this problem,
}, ...]
failureReason: { // if there was an error running validation
name: error name (e.g. "nserror", "unexpectederror"),
code: error code for "httperror" and "networkerror" only,
error: error string for "othererror" and "unexpectederror" only,
from: for "autherror" only,
},
},
}, ...]
}, ...]
```
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
structure:
type: array
items:
type: object
properties:
when:
type: number
took:
type: number
didLogin:
type: boolean
why:
type: string
failureReason: &sync_failure_reason
type: object
properties:
name:
type: string
code:
type: number
error:
type: string
from:
type: string
devices:
type: array
items:
type: object
properties:
os:
type: string
version:
type: string
id:
type: string
device_type:
type: string
syncID:
type: string
status:
type: object
properties:
sync:
type: string
service:
type: string
engines:
type: array
items:
type: object
properties:
name:
type: string
took:
type: number
status:
type: string
incoming:
type: object
properties:
applied:
type: number
succeeded:
type: number
failed:
type: number
failedReasons: &sync_named_counts
type: array
items:
type: object
properties:
name:
type: string
count:
type: number
outgoing:
type: array
items:
type: object
properties:
sent:
type: number
failed:
type: number
failedReasons: *sync_named_counts
failureReason: *sync_failure_reason
steps:
type: array
items:
type: object
properties:
name:
type: string
took:
type: number
counts: *sync_named_counts
validation:
type: object
properties:
checked:
type: number
failureReason: *sync_failure_reason
took:
type: number
version:
type: number
problems: *sync_named_counts
migrations:
type: object
description: |
The application-services developers are in the process of oxidizing parts
of firefox sync and the related data storage code,
which typically requires migrating the old storage into a new database and/or format.
When a migration like this occurs,
a record is reported in this list the next time the sync ping is submitted.
```text
[{
migration_type: Presently this is only ever "webext-storage",
entries: The number of entries/preferences in the source (legacy) database, including ones we failed to read,
entriesSuccessful: he number of entries/preferences (see below) which we have successfully migrated into the destination database,
extensions: The number of distinct extensions which have at least one preference in the source (legacy) database,
extensionsSuccessful: The number of distinct extensions which have at least one preference in the destination (migrated) database,
openFailure: A boolean flag that is true if we hit a read error prior to . This likely indicates complete corruption, or a bug in an underlying library like rusqlite,
}]
```
**Note: "entries" vs "extensions"**
The `webext-storage` migration record detailed above contains counts for both:
* The number of “entries” detected vs successfully migrated.
* The number of “extensions” detected vs successfully migrated.
This may seem redundant, but these refer to different (but related) things.
The distinction here has to do with the way the two databases store extension-storage data:
* The legacy database stores one row for each
(`extension_id`, `preference_name`, `preference_value`) triple.
These are referred to as `entries`.
* Conversely, the new database stores one row per extension,
which is a pair containing both the `extension_id`,
as well as a dictionary holding all preference data,
and so are equivalent to extensions.
(The description above is a somewhat simplified view of things,
as it ignores a number values each database stores which is irrelevant for migration)
That is, entries represent each individual preference setting,
and extensions represent the collected set of preferences for a given extension.
Counts for are both of these are present as it’s likely that the disparity
would point to different kinds of issues with the migration code.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1963812
data_sensitivity:
- technical
notification_emails:
- sync-dev@mozilla.org
expires: never
send_in_pings:
- sync
structure:
type: array
items:
type: object
properties:
migration_type:
type: string
entries:
type: number
entriesSuccessful:
type: number
extensions:
type: number
extensionsSuccessful:
type: number
openFailure:
type: boolean
|