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 1388 1389 1390 1391 1392
|
# 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 :: Address Bar"
urlbar:
abandonment:
type: event
description: Recorded when the user abandons a search (blurring the urlbar).
extra_keys:
abandonment_type:
description: >
Records the reason that resulted in an abandonment. The possible
values are: `blur` and `tab_switch`.
type: string
sap:
description: >
`sap` is the meaning of `search access point`. It records where the
user started the search action from. The possible values are: `urlbar`
, `handoff`, `urlbar_newtab` and `urlbar_addonpage`.
type: string
interaction:
description: >
How the user started the search action. The possible values are:
`typed`, `pasted`, `topsite_search` (clicked on a topsite search
shortcut), `topsites` (selected a topsite result with empty search
string), `returned` (The user abandoned a search, then returned to it)
, `restarted` (The user abandoned a search, then returned to it,
cleared it and typed a completely different string), `refined` (The
user abandoned a search, then returned to it, and partially modified
the string), `persisted_search_terms` (The user returned to a previous
successful search that persisted terms in the urlbar),
`persisted_search_terms_restarted` (The user returned to a previous
successful search that persisted terms in the urlbar, then cleared it
and typed a completely different string) and
`persisted_search_terms_refined` (The user returned to a previous
successful search that persisted terms in the urlbar, and partially
modified the string).
type: string
search_mode:
description: >
If the urlbar is in search mode, thus restricting results to a
specific search engine or local source, this is set to the search mode
source. The possible sources are: `actions`, `bookmarks`, `history`,
`search_engine`, and `tabs`. If search mode is active but the source
did not fall into any of these categories, this will be `unknown`. If
search mode is not active, this will be an empty string.
type: string
search_engine_default_id:
description: >
The telemetry id of the search engine.
Reflects `search.engine.default.engine_id`.
type: string
n_chars:
description: >
The length of string used for the search. It includes whitespaces.
type: quantity
n_words:
description: >
The length of words used for the search. The words are made by
splitting the search string by whitespaces, thus this doesn’t support
CJK languages. For performance reasons a maximum of 255 characters are
considered when splitting.
type: quantity
n_results:
description: >
The number of results shown to the user. If this is high the results
list below may be truncated due to technical limitations. Also note in
that case not all the results may be physically visible due to the
screen size limitation.
type: quantity
groups:
description: >
Comma separated list of result groups in the order they were shown to
the user. The groups may be repeated, since the list will match 1:1
the results list, so we can link each result to a group. The possible
group names are: `heuristic`, `adaptive_history`, `search_history`,
`search_suggest`, `search_suggest_rich`, `trending_search`,
`trending_search_rich`, `top_pick`, `top_site`, `remote_tab`,
`addon`, `general`, `suggest`, `about_page`, `suggested_index`, and
`restrict_keyword`.
If the group did not fall into any of these,
this will be `unknown` and a bug should be filed to investigate it.
type: string
results:
description: >
Comma separated list of result types in the order they were shown to
the user. The `unknown` type should not occur and indicates a bug. The
possible types are:
`action`,
`addon`,
`autofill_about`,
`autofill_adaptive`,
`autofill_origin`,
`autofill_unknown`,
`autofill_url`,
`bookmark`,
`calc`,
`clipboard`,
`fxsuggest_data_sharing_opt_in`,
`history`,
`history_semantic`,
`history_semantic_serp`,
`history_serp`,
`intervention_clear`,
`intervention_refresh`,
`intervention_unknown`,
`intervention_update`,
`keyword`,
`merino_adm_sponsored`,
`merino_amo`,
`merino_top_picks`,
`merino_wikipedia`,
`ml_yelp`,
`recent_search`,
`remote_tab`,
`restrict_keyword_actions`,
`restrict_keyword_bookmarks`,
`restrict_keyword_history`,
`restrict_keyword_tabs`,
`rust_adm_nonsponsored`,
`rust_adm_sponsored`,
`rust_amo`,
`rust_exposure`,
`rust_fakespot_amazon`,
`rust_fakespot_bestbuy`,
`rust_fakespot_other`,
`rust_fakespot_walmart`,
`rust_mdn`,
`rust_yelp`,
`search_engine`,
`search_history`,
`search_suggest`,
`search_suggest_rich`,
`tab`,
`tab_semantic`,
`tab_semantic_serp`,
`tab_serp`,
`tab_to_search`,
`tip_dismissal_acknowledgment`,
`tip_onboard`,
`tip_redirect`,
`tip_unknown`,
`top_site`,
`trending_search`,
`trending_search_rich`,
`unit`,
`url`,
`weather`
type: string
actions:
description: >
Comma separated list of actions keys in the order they were shown to
the user. Possible keys are: `addons`, `bookmarks`, `clear`, `downloads`,
`extensions`, `inspect`, `logins`, `print`, `private`,
`refresh`, `restart`, `savepdf`, `screenshot`, `settings`, `tabswitch`,
`themes`, `update`, `viewsource`.
If there is no action shown in a position that is denoted with `none`.
type: string
available_semantic_sources:
description: >
Comma separated list of semantic sources that were available to search.
This indicates general availability of the source, not whether it was
queried.
The possible values are: `history`, `none`.
type: string
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1800414
- https://bugzilla.mozilla.org/show_bug.cgi?id=1805717
- https://bugzilla.mozilla.org/show_bug.cgi?id=1842247
- https://bugzilla.mozilla.org/show_bug.cgi?id=1917992
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1800414#c2
- https://bugzilla.mozilla.org/show_bug.cgi?id=1805717#c4
- https://bugzilla.mozilla.org/show_bug.cgi?id=1842247#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1917992
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
disable:
type: event
description: >
Recorded after a search containing a Suggest result is engaged
or abandoned. Number of seconds is controlled by hidden
browser.urlbar.disableSuggestEvent.maxSecondsFromLastSearch pref.
Reported values refer to the last search.
extra_keys:
sap:
description: >
`sap` is the meaning of `search access point`. It records where the
user started the search action from. The possible values are: `urlbar`
, `handoff`, `urlbar_newtab` and `urlbar_addonpage`.
type: string
interaction:
description: >
How the user started the search action. The possible values are:
`typed`, `pasted`, `topsite_search` (clicked on a topsite search
shortcut), `topsites` (selected a topsite result with empty search
string), `returned` (The user abandoned a search, then returned to it)
, `restarted` (The user abandoned a search, then returned to it,
cleared it and typed a completely different string), `refined` (The
user abandoned a search, then returned to it, and partially modified
the string), `persisted_search_terms` (The user returned to a previous
successful search that persisted terms in the urlbar),
`persisted_search_terms_restarted` (The user returned to a previous
successful search that persisted terms in the urlbar, then cleared it
and typed a completely different string) and
`persisted_search_terms_refined` (The user returned to a previous
successful search that persisted terms in the urlbar, and partially
modified the string).
type: string
search_mode:
description: >
If the urlbar is in search mode, thus restricting results to a
specific search engine or local source, this is set to the search mode
source. The possible sources are: `actions`, `bookmarks`, `history`,
`search_engine`, and `tabs`. If search mode is active but the source
did not fall into any of these categories, this will be `unknown`. If
search mode is not active, this will be an empty string.
type: string
search_engine_default_id:
description: >
The telemetry id of the search engine.
Reflects `search.engine.default.engine_id`.
type: string
n_chars:
description: >
The length of string used for the search. It includes whitespaces.
type: quantity
n_words:
description: >
The length of words used for the search. The words are made by
splitting the search string by whitespaces, thus this doesn’t support
CJK languages. For performance reasons a maximum of 255 characters are
considered when splitting.
type: quantity
n_results:
description: >
The number of results shown to the user. If this is high the results
list below may be truncated due to technical limitations. Also note in
that case not all the results may be physically visible due to the
screen size limitation.
type: quantity
selected_result:
description: >
The type of the result the user selected. If the last search was an engagement,
it will be set to the selected_result value of the engagement event, otherwise in
the case of the abandonment event, it will be set to `none`.
type: string
results:
description: >
Comma separated list of result types in the order they were shown to
the user. The `unknown` type should not occur and indicates a bug. The
types are one of the values defined for the engagement event results property.
type: string
feature:
description: >
The specific feature that is being disabled. The possible types are:
`suggest`
More values may be added in the future.
type: string
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1960836
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1960836
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
engagement:
type: event
description: Recorded when the user executes an action on a result.
extra_keys:
sap:
description: >
`sap` is the meaning of `search access point`. It records where the
user started the search action from. The possible values are: `urlbar`
, `handoff`, `urlbar_newtab` and `urlbar_addonpage`.
type: string
interaction:
description: >
How the user started the search action. The possible values are:
`typed`, `pasted`, `topsite_search` (clicked on a topsite search
shortcut), `topsites` (selected a topsite result with empty search
string), `returned` (The user abandoned a search, then returned to it)
, `restarted` (The user abandoned a search, then returned to it,
cleared it and typed a completely different string), `refined` (The
user abandoned a search, then returned to it, and partially modified
the string), `persisted_search_terms` (The user returned to a previous
successful search that persisted terms in the urlbar),
`persisted_search_terms_restarted` (The user returned to a previous
successful search that persisted terms in the urlbar, then cleared it
and typed a completely different string) and
`persisted_search_terms_refined` (The user returned to a previous
successful search that persisted terms in the urlbar, and partially
modified the string).
type: string
search_mode:
description: >
If the urlbar is in search mode, thus restricting results to a
specific search engine or local source, this is set to the search mode
source. The possible sources are: `actions`, `bookmarks`, `history`,
`search_engine`, and `tabs`. If search mode is active but the source
did not fall into any of these categories, this will be `unknown`. If
search mode is not active, this will be an empty string.
type: string
search_engine_default_id:
description: >
The telemetry id of the search engine.
Reflects `search.engine.default.engine_id`.
type: string
n_chars:
description: >
The length of string used for the search. It includes whitespaces.
type: quantity
n_words:
description: >
The length of words used for the search. The words are made by
splitting the search string by whitespaces, thus this doesn’t support
CJK languages. For performance reasons a maximum of 255 characters are
considered when splitting.
type: quantity
n_results:
description: >
The number of results shown to the user. If this is high the results
list below may be truncated due to technical limitations. Also note in
that case not all the results may be physically visible due to the
screen size limitation.
type: quantity
selected_result:
description: >
The type of the result the user selected. The `unknown` type should
not occur and indicates a bug. The possible types are:
`action`,
`addon`,
`autofill_about`,
`autofill_adaptive`,
`autofill_origin`,
`autofill_unknown`,
`autofill_url`,
`bookmark`,
`calc`,
`clipboard`,
`experimental_addon`,
`fxsuggest_data_sharing_opt_in`,
`history`,
`history_semantic`,
`history_semantic_serp`,
`history_serp`,
`input_field`,
`intervention_clear`,
`intervention_refresh`,
`intervention_unknown`,
`intervention_update`,
`keyword`,
`merino_adm_sponsored`,
`merino_amo`,
`merino_top_picks`,
`merino_wikipedia`,
`ml_yelp`,
`recent_search`,
`remote_tab`,
`restrict_keyword_actions`,
`restrict_keyword_bookmarks`,
`restrict_keyword_history`,
`restrict_keyword_tabs`,
`rust_adm_nonsponsored`,
`rust_adm_sponsored`,
`rust_amo`,
`rust_exposure`,
`rust_fakespot_amazon`,
`rust_fakespot_bestbuy`,
`rust_fakespot_other`,
`rust_fakespot_walmart`,
`rust_mdn`,
`rust_yelp`,
`search_engine`,
`search_history`,
`search_shortcut_button`,
`search_suggest`,
`search_suggest_rich`,
`site_specific_contextual_search`,
`tab`,
`tab_semantic`,
`tab_semantic_serp`,
`tab_serp`,
`tab_to_search`,
`tip_dismissal_acknowledgment`,
`tip_onboard`,
`tip_redirect`,
`tip_unknown`,
`top_site`,
`trending_search`,
`trending_search_rich`,
`unit`,
`url`,
`weather`
If the user has selected an action this will be set with an action
prefix as followed
`action_*`
Where the wildcard(*) will be replaced by one of the values
documented in the actions field.
type: string
selected_position:
description: >
The 1-based index of the result the user selected. If user searched
without selection, 0 will be recorded.
type: quantity
provider:
description: >
The name of the `UrlbarProvider` that provided the selected result.
The possible values are: `AboutPages`, `AliasEngines`, `Autofill`,
`BookmarkKeywords`, `calculator`, `UrlbarProviderContextualSearch`,
`HeuristicFallback`, `HistoryUrlHeuristic`, `InputHistory`,
`UrlbarProviderInterventions`, `Omnibox`, `OpenTabs`, `Places`,
`PrivateSearch`, `quickactions`, `UrlbarProviderQuickSuggest`,
`RemoteTabs`, `SearchSuggestions`, `UrlbarProviderSearchTips`,
`TabToSearch`, `TokenAliasEngines`, `UrlbarProviderTopSites`,
`UnitConversion` and `UnifiedComplete`.
If engagement_type is `drop_go` or `paste_go`, this will be null
because no results are shown. And also, if selected_result is
`experimental_addon`, it means that the user selected a result
from an add-on using the urlbar experimental API. In this case,
this will be the provider name specified by the add-on.
type: string
engagement_type:
description: >
Records how the user selected the result. The possible values are:
`click`,
`dismiss`,
`drop_go`,
`enter`,
`go_button`,
`help`,
`inaccurate_location`,
`manage`,
`not_interested`,
`not_relevant`,
`paste_go`,
`show_less_frequently`
type: string
groups:
description: >
Comma separated list of result groups in the order they were shown to
the user. The groups may be repeated, since the list will match 1:1
the results list, so we can link each result to a group. The possible
group names are: `heuristic`, `adaptive_history`, `search_history`,
`search_suggest`, `search_suggest_rich`, `trending_search`,
`trending_search_rich`, `top_pick`, `top_site`, `recent_search`,
`remote_tab`, `addon`, `general`, `suggest`, `about_page`,
`suggested_index`, and `restrict_keyword`.
If the group did not fall into any of these, this will be `unknown`
and a bug should be filed to investigate it. If engagement_type is
`drop_go` or `paste_go`, this will be empty string because no results
are shown.
type: string
results:
description: >
Comma separated list of result types in the order they were shown to
the user. The `unknown` type should not occur and indicates a bug. The
possible types are:
`action`,
`addon`,
`autofill_about`,
`autofill_adaptive`,
`autofill_origin`,
`autofill_unknown`,
`autofill_url`,
`bookmark`,
`calc`,
`clipboard`,
`fxsuggest_data_sharing_opt_in`,
`history`,
`history_semantic`,
`history_semantic_serp`,
`history_serp`,
`intervention_clear`,
`intervention_refresh`,
`intervention_unknown`,
`intervention_update`,
`keyword`,
`merino_adm_sponsored`,
`merino_amo`,
`merino_top_picks`,
`merino_wikipedia`,
`ml_yelp`,
`recent_search`,
`remote_tab`,
`restrict_keyword_actions`,
`restrict_keyword_bookmarks`,
`restrict_keyword_history`,
`restrict_keyword_tabs`,
`rust_adm_nonsponsored`,
`rust_adm_sponsored`,
`rust_amo`,
`rust_exposure`,
`rust_fakespot_amazon`,
`rust_fakespot_bestbuy`,
`rust_fakespot_other`,
`rust_fakespot_walmart`,
`rust_mdn`,
`rust_yelp`,
`search_engine`,
`search_history`,
`search_suggest`,
`search_suggest_rich`,
`tab`,
`tab_semantic`,
`tab_semantic_serp`,
`tab_serp`,
`tab_to_search`,
`tip_dismissal_acknowledgment`,
`tip_onboard`,
`tip_redirect`,
`tip_unknown`,
`top_site`,
`trending_search`,
`trending_search_rich`,
`unit`,
`url`,
`weather`
type: string
actions:
description: >
Comma separated list of actions keys in the order they were shown to
the user. Possible keys are: `addons`, `bookmarks`, `clear`, `downloads`,
`extensions`, `inspect`, `logins`, `print`, `private`,
`refresh`, `restart`, `savepdf`, `screenshot`, `settings`, `tabswitch`,
`themes`, `update`, `viewsource`.
If there is no action shown in a position that is denoted with `none`.
type: string
available_semantic_sources:
description: >
Comma separated list of semantic sources that were available to search.
This indicates general availability of the source, not whether it was
queried.
The possible values are: `history`, `none`.
type: string
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1797265
- https://bugzilla.mozilla.org/show_bug.cgi?id=1805717
- https://bugzilla.mozilla.org/show_bug.cgi?id=1842247
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1797265#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1805717#c4
- https://bugzilla.mozilla.org/show_bug.cgi?id=1842247#c3
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
fakespot_engagement:
type: event
description: >
Recorded when the user engages with a Fakespot suggestion.
extra_keys:
grade:
description: >
The Fakespot grade: "A", "B", etc.
type: string
rating:
description: >
The Fakespot rating: "4.1", "5.0", etc.
type: string
provider:
description: >
The product provider: "amazon", "bestbuy", "walmart"
type: string
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1907990
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1907990
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
exposure:
type: event
description: >
Recorded when client is exposed to urlbar experiment results.
extra_keys:
results:
description: >
Comma separated list of results that were exposed to the user.
type: string
terminal:
description: >
Comma separated list of booleans that indicates whether the results
were present at the end of the urlbar session. This list is parallel
to the `results` list. i.e., the boolean at index i is true if the
result at index i was present at the end of the session. For example,
if `results` is "bookmark,history,search_suggest" and the bookmark was
not present at the end of the session, the history result was present,
and the search suggestion was not present, then `terminal` will be
"false,true,false".
type: string
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1819766
- https://bugzilla.mozilla.org/show_bug.cgi?id=1918299
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1819766#c9
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
keyword_exposure:
type: event
description: >
When keyword exposures are enabled, this event is recorded in the
`urlbar-keyword-exposure` ping, which is submitted at the end of urlbar
sessions during which one or more exposure results are matched. The ping
will contain one `keyword_exposure` event for each instance where a result
is matched during the session. See the `urlbar-keyword-exposure` ping for
details.
extra_keys:
result:
type: string
description: >
The type of result that was matched.
keyword:
type: string
description: >
The keyword that matched the result.
terminal:
type: boolean
description: >
Whether the matched result and keyword were present at the end of the
urlbar session. If true, the session ended with them. If false, the
result and keyword were matched at some point during the session but
the session did not end with them.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1881875
- https://bugzilla.mozilla.org/show_bug.cgi?id=1915507
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1881875
- https://bugzilla.mozilla.org/show_bug.cgi?id=1915507
data_sensitivity:
- stored_content
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
send_in_pings:
- urlbar-keyword-exposure
quick_suggest_contextual_opt_in:
type: event
description: >
Recorded when the contextual opt-in UI is shown or interacted with.
extra_keys:
interaction:
description: >
The type of interaction. Possible values: `impression`, `dismiss`,
`allow`, `learn_more`.
type: string
top_position:
description: >
Whether the opt-in result appeared at the very top of results or at
the bottom, after one-off buttons.
type: boolean
say_hello:
description: >
Whether the alternative copy was used for the opt-in result.
type: boolean
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1852058
- https://bugzilla.mozilla.org/show_bug.cgi?id=1958147
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1852058#c2
- https://bugzilla.mozilla.org/show_bug.cgi?id=1866204#c8
- https://bugzilla.mozilla.org/show_bug.cgi?id=1892377#c2
- https://bugzilla.mozilla.org/show_bug.cgi?id=1912174#c8
- https://bugzilla.mozilla.org/show_bug.cgi?id=1933863#c5
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: 147
pref_max_results:
lifetime: application
type: quantity
unit: integer
description: >
Maximum results to show in the Address Bar.
Corresponds to the value of the `browser.urlbar.maxRichResults` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817196
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817196
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
send_in_pings:
- events
pref_suggest_data_collection:
lifetime: application
type: boolean
description: >
Whether the user has opted in to data collection for Firefox Suggest,
i.e., online suggestions served from Merino.
Corresponds to the value of the
`browser.urlbar.quicksuggest.dataCollection.enabled` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1847855
- https://bugzilla.mozilla.org/show_bug.cgi?id=1849726
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1847855
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
send_in_pings:
- events
pref_suggest_nonsponsored:
lifetime: application
type: boolean
description: >
Whether non-sponsored quick suggest results are shown in the urlbar.
Corresponds to the value of the
`browser.urlbar.suggest.quicksuggest.nonsponsored` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1847855
- https://bugzilla.mozilla.org/show_bug.cgi?id=1849726
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1847855
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
send_in_pings:
- events
pref_suggest_sponsored:
lifetime: application
type: boolean
description: >
Whether sponsored quick suggest results are shown in the urlbar.
Corresponds to the value of the
`browser.urlbar.suggest.quicksuggest.sponsored` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1847855
- https://bugzilla.mozilla.org/show_bug.cgi?id=1849726
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1847855
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
send_in_pings:
- events
pref_suggest_topsites:
lifetime: application
type: boolean
description: >
Whether topsite results are enabled in the urlbar.
Corresponds to the value of the `browser.urlbar.suggest.topsites` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817196
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817196
data_sensitivity:
- interaction
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
send_in_pings:
- events
autofill_deletion:
type: counter
description: >
A uint recording the deletion count for autofilled string in the
urlbar. This occurs when the user deletes whole autofilled string by
BACKSPACE or DELETE key while the autofilled string is selected.
This metric was generated to correspond to the Legacy Telemetry
scalar urlbar.autofill_deletion.
bugs:
- https://bugzil.la/1815342
data_reviews:
- https://bugzil.la/1815342
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: URLBAR_AUTOFILL_DELETION
autocomplete_first_result_time:
type: timing_distribution
description: >
PLACES: Time for first autocomplete result if > 50ms (ms)
This metric was generated to correspond to the Legacy Telemetry
exponential histogram PLACES_AUTOCOMPLETE_1ST_RESULT_TIME_MS.
time_unit: millisecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1950710
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1950710
notification_emails:
- fx-search-telemetry@mozilla.com
- adw@mozilla.com
expires: never
telemetry_mirror: PLACES_AUTOCOMPLETE_1ST_RESULT_TIME_MS
autocomplete_sixth_result_time:
type: timing_distribution
description: >
PLACES: Time for the 6 first autocomplete results (ms)
This metric was generated to correspond to the Legacy Telemetry
exponential histogram PLACES_AUTOCOMPLETE_6_FIRST_RESULTS_TIME_MS.
time_unit: millisecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1489524
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1489524
notification_emails:
- fx-search-telemetry@mozilla.com
- adw@mozilla.com
expires: never
telemetry_mirror: PLACES_AUTOCOMPLETE_6_FIRST_RESULTS_TIME_MS
# Replacement for PingCentre "quicksuggest-block|impression|click" pings.
quick_suggest:
ping_type:
type: string
description: >
The ping's type. In other situations might be designated by an event's
name or an interaction field. E.g. "quicksuggest-impression",
"quicksuggest-block", "quicksuggest-click".
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
country:
type: string
description: >
Records the home region of the user as determined by `Region.sys.mjs` and
the `browser.search.region` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968154
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968154
data_sensitivity:
- technical
notification_emails:
- fx-search-telemetry@mozilla.com
- disco-team@mozilla.com
- ads-eng@mozilla.com
expires: never
send_in_pings:
- quick-suggest
position:
type: quantity
unit: QuickSuggest position
description: >
The position (1-based) of the QuickSuggest item being interatcted with.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
suggested_index:
type: string
description: >
A stringified integer value that is the intended index of the suggestion
being interacted with. If `suggested_index_relative_to_group` is true, the
index is relative to the "Firefox Suggest" group; otherwise the index is
relative to the entire list of suggestions. Non-negative values (starting
at 0) are relative to the start/top of the group/list; negative values are
relative to the end/bottom of the group/list.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854755
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854755
data_sensitivity:
- interaction
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
suggested_index_relative_to_group:
type: boolean
description: >
Whether `suggested_index` is relative to the "Firefox Suggest" group. If
false, it is relative to the entire list of suggestions.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854755
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854755
data_sensitivity:
- interaction
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
source:
type: string
description: >
The source of the interaction. E.g. "urlbar".
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
match_type:
type: string
description: >
Whether this was a best/top match or not. Either "best-match" or
"firefox-suggest".
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
block_id:
type: string
description: >
A unique identifier for the suggestion (a.k.a. a keywords block).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
improve_suggest_experience:
type: boolean
description: >
Whether the "Improve Suggest Experience" checkbox is checked.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
advertiser:
type: string
description: >
The name of the advertiser providing the sponsored TopSite.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
- web_activity
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
request_id:
type: string
description: >
A request identifier for each API request to
[Merino](https://mozilla-services.github.io/merino/).
Only present for suggestions provided by Merino.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
- web_activity
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
is_clicked:
type: boolean
description: >
Whether this quicksuggest-impression ping was for an item that was
clicked.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
reporting_url:
type: url
description: >
The url to report this interaction to.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- web_activity
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
context_id:
type: uuid
description: >
An identifier to identify users for Contextual Services user interaction pings.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
- https://bugzilla.mozilla.org/show_bug.cgi?id=1941161
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
- https://bugzilla.mozilla.org/show_bug.cgi?id=1941161
data_sensitivity:
- technical
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
- quick-suggest-deletion-request
iab_category:
type: string
description: >
The suggestion's category. Either "22 - Shopping" or "5 - Educational".
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- interaction
- web_activity
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- quick-suggest
# Metrics from the Rust suggest component.
#
# We can't record metrics from Rust directly. To work around that we:
# - Define the metrics here.
# - Define API calls in Rust suggest component that return the metrics
# alongside the normal results.
# - Record the metrics in the JS code in this component
suggest:
ingest_time:
type: labeled_timing_distribution
description: Time for ingestion (excluding download time), labelled by record type
time_unit: microsecond
labels:
- icon
- amp
- wikipedia
- amo-suggestions
- yelp-suggestions
- mdn-suggestions
- weather
- configuration
- fakespot-suggestions
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1908397
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1911664
notification_emails:
- disco-team@mozilla.com
- bdk@mozilla.com
expires: "never"
data_sensitivity:
- technical
ingest_download_time:
type: labeled_timing_distribution
description: Download time for ingestion, labelled by record type
time_unit: microsecond
labels:
- icon
- amp
- wikipedia
- amo-suggestions
- yelp-suggestions
- mdn-suggestions
- weather
- configuration
- fakespot-suggestions
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1908397
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1911664
notification_emails:
- disco-team@mozilla.com
- bdk@mozilla.com
expires: "never"
data_sensitivity:
- technical
query_time:
type: labeled_timing_distribution
description: Time executing queries, labelled by provider type
time_unit: microsecond
labels:
- amp
- wikipedia
- amo
- yelp
- mdn
- weather
- fakespot
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1908397
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1911664
notification_emails:
- disco-team@mozilla.com
- bdk@mozilla.com
expires: "never"
data_sensitivity:
- technical
# Relevance scoring & ranking metrics for Firefox Suggest.
# This feature is still in the experimentation phase and all the metrics are
# set to expire by 136 for now.
suggest_relevance:
status:
type: labeled_counter
description: >
Count the successful / failed attempts of relevance scoring in
Firefox Suggest.
labels:
- success
- failure
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1926315
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1926315
notification_emails:
- disco-team@mozilla.com
- najiang@mozilla.com
expires: 147
data_sensitivity:
- technical
outcome:
type: labeled_counter
description: >
For each successful scoring, count whether the relevance score gets
boosted or decreased over the original score. Note that given how the
score is calculated, it's practically impossible to have the two scores
tied. If that's the case anyhow, it will increment the "boosted" counter.
labels:
- boosted
- decreased
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1926315
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1926315
notification_emails:
- disco-team@mozilla.com
- najiang@mozilla.com
expires: 147
data_sensitivity:
- technical
urlbar.trending:
block:
type: counter
description: >
User has blocked seeing trending results.
This metric was generated to correspond to the Legacy Telemetry
scalar urlbar.trending.block.
bugs:
- https://bugzil.la/1848048
data_reviews:
- https://bugzil.la/1848048
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: URLBAR_TRENDING_BLOCK
urlbar.persistedsearchterms:
revert_by_popup_count:
type: counter
description: >
The count of the number of times search terms were removed from the
urlbar due to a shown PopupNotification. This event can happen when
a user loads a SERP and a PopupNotification is shown, as well as
when a user switches away from a tab on a SERP showing a
PopupNotification and switches back to it.
This metric was generated to correspond to the Legacy Telemetry
scalar urlbar.persistedsearchterms.revert_by_popup_count.
bugs:
- https://bugzil.la/1815971
data_reviews:
- https://bugzil.la/1815971
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: URLBAR_PERSISTEDSEARCHTERMS_REVERT_BY_POPUP_COUNT
view_count:
type: counter
description: >
The count of the number of times search terms persisted in the
Urlbar. This gets recorded after a user loads a SERP that persists
search terms, or switches back to an existing tab that should be
showing the persisted search terms in the Urlbar, regardless of
whether PopupNotification cleared the search terms from the Urlbar.
This metric was generated to correspond to the Legacy Telemetry
scalar urlbar.persistedsearchterms.view_count.
bugs:
- https://bugzil.la/1815971
data_reviews:
- https://bugzil.la/1815971
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: URLBAR_PERSISTEDSEARCHTERMS_VIEW_COUNT
urlbar.zeroprefix:
abandonment:
type: counter
description: >
Counts how many times the zero-prefix urlbar results panel was
abandoned.
This metric was generated to correspond to the Legacy Telemetry
scalar urlbar.zeroprefix.abandonment.
bugs:
- https://bugzil.la/1806765
data_reviews:
- https://bugzil.la/1806765
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: URLBAR_ZEROPREFIX_ABANDONMENT
engagement:
type: counter
description: >
Counts how many times a result was picked in the zero-prefix urlbar
results panel.
This metric was generated to correspond to the Legacy Telemetry
scalar urlbar.zeroprefix.engagement.
bugs:
- https://bugzil.la/1806765
data_reviews:
- https://bugzil.la/1806765
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: URLBAR_ZEROPREFIX_ENGAGEMENT
exposure:
type: counter
description: >
Counts how many times the zero-prefix urlbar results panel was shown
to the user.
This metric was generated to correspond to the Legacy Telemetry
scalar urlbar.zeroprefix.exposure.
bugs:
- https://bugzil.la/1806765
data_reviews:
- https://bugzil.la/1806765
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: URLBAR_ZEROPREFIX_EXPOSURE
urlbar.quickaction:
picked:
type: labeled_counter
description: >
Counts how many times quickaction results were selected. The key is
the in the form "actionkey-N" where N is the number of characters
the user typed to be shown the action.
This metric was generated to correspond to the Legacy Telemetry
scalar quickaction.picked.
bugs:
- https://bugzil.la/1783155
data_reviews:
- https://bugzil.la/1783155
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: QUICKACTION_PICKED
urlbar.unifiedsearchbutton:
opened:
type: counter
description: >
Counts how many times Unified Search Button popup is opened.
This metric was generated to correspond to the Legacy Telemetry
scalar urlbar.unifiedsearchbutton.opened.
bugs:
- https://bugzil.la/1936673
data_reviews:
- https://bugzil.la/1936673
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: URLBAR_UNIFIEDSEARCHBUTTON_OPENED
picked:
type: labeled_counter
description: >
Counts how many times Unified Search Button items were selected.
The key is followings.
* builtin_search: Builtin search engine.
* addon_search: Addon search engine.
* local_search: Local search engine such as Bookmarks.
* settings: Settings menu.
This metric was generated to correspond to the Legacy Telemetry
scalar urlbar.unifiedsearchbutton.picked.
bugs:
- https://bugzil.la/1936673
data_reviews:
- https://bugzil.la/1936673
notification_emails:
- fx-search-telemetry@mozilla.com
expires: never
telemetry_mirror: URLBAR_UNIFIEDSEARCHBUTTON_PICKED
|