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 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554
|
# 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 :: New Tab Page'
newtab:
locale:
type: string
description: >
The application's locale as of when newtab's TelemetryFeed was init.
Comes from `Services.local.appLocaleAsBCP47`.
Looks like `en-US`.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
lifetime: application
newtab_category:
type: string
description: >
The current setting of the newtab page.
One of ["enabled", "disabled", "extension"] or any value from
SiteClassifier like "known-hijacker" or "social-media".
Similar to Activity Stream's PAGE_TAKEOVER_DATA event's
`newtab_url_category`.
Sampled once after newtab init.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- technical
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
lifetime: application
homepage_category:
type: string
description: >
The current setting of the home page.
One of ["enabled", "disabled", "extension"] or any value from
SiteClassifier like "known-hijacker" or "social-media".
Similar to Activity Stream's PAGE_TAKEOVER_DATA event's
`home_url_category`.
Sampled once after newtab init.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- technical
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
lifetime: application
opened:
type: event
description: >
Recorded when newtab UI is opened via `about:newtab` or `about:home` or
`about:welcome` and has been made visible (see `visibility_event_rcvd_ts`
in
[detect-user-session-start.js](https://searchfox.org/mozilla-central/source/browser/components/newtab/content-src/lib/detect-user-session-start.js)).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
extra_keys:
newtab_visit_id: &newtab_visit_id
description: >
The id of this newtab visit.
Allows you to separate multiple simultaneous newtabs and
build an event timeline of actions taken from this newtab.
type: string
source:
description: >
The source that opened this newtab.
One of
* `about:newtab`
* `about:home`
* `about:welcome`
* `other`
(See `ONBOARDING_ALLOWED_PAGE_VALUES`).
type: string
window_inner_height:
description: >
The height of the page window at time of load.
type: string
window_inner_width:
description: >
The width of the page window at time of load.
type: string
send_in_pings:
- newtab
closed:
type: event
description: >
Recorded when newtab UI is closed by
* navigation
* closing the tab
Doesn't mean that the newtab was ever visible to a user.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
blocked_sponsors:
type: string_list
description: >
The advertiser names that have been dismissed by the user.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1828234
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1828234#c1
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
- ttran@mozilla.com
expires: never
send_in_pings:
- newtab
lifetime: application
sov_allocation:
type: string_list
description: >
The partner group assignment for sov
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1840311
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1840311#c3
data_sensitivity:
- technical
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
- ttran@mozilla.com
expires: never
send_in_pings:
- newtab
lifetime: application
tooltip_click:
type: event
description: >
Recorded when a feature highlight tooltip is opened.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1888983
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1888983
data_sensitivity:
- interaction
notification_emails:
- sdowne@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
feature: &feature
description: The feature highlight that was interacted with.
type: string
send_in_pings:
- newtab
topic_selection_open:
type: event
description: >
Recorded when the topic selection modal is opened
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896004
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896004
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
topic_selection_dismiss:
type: event
description: >
Recorded when the topic selection modal is dismissed (topics are not saved)
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896004
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896004
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
topic_selection_topics_saved:
type: event
description: >
Recorded when topics are saved from the topics selection modal
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896004
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896004
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
topics:
description: >
list of topics that were saved by user
type: string
previous_topics:
description: >
list of previous topics that were saved, an empty string
means no previous topics were saved
type: string
first_save:
description: >
whether or not it is the user's first time setting topics
type: boolean
send_in_pings:
- newtab
selected_topics:
type: string_list
description: >
The list of topics the user selected
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1907152
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1907152
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
- mcrawford@mozilla.com
expires: never
send_in_pings:
- newtab
lifetime: application
wallpaper_click:
type: event
description: >
Recorded when a user clicks on a wallpaper option
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896004
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1896004
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
- mcrawford@mozilla.com
expires: never
extra_keys:
selected_wallpaper:
description: >
Which wallpaper has been selected by the user
Will be the title of a Wallpaper or 'none' for users
that reset the background to default
type: string
had_previous_wallpaper:
description: >
Whether or not user had a previously set wallpaper
type: boolean
had_uploaded_previously:
description: >
Whether or not user had a previously uploaded a custom wallpaper
type: boolean
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
wallpaper_highlight_cta_click:
type: event
description: >
Recorded when a user clicks the CTA on the wallpaper feature highlight
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900854
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900854
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
wallpaper_highlight_dismissed:
type: event
description: >
Recorded when a user dismisses the wallpaper feature highlight
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900854
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900854
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
wallpaper_category_click:
type: event
description: >
Recorded when a user clicks a wallpaper category option
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900420
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900420
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
selected_category:
description: >
Which wallpaper category selected by user
type: string
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
weather_change_display:
type: event
description: >
Recorded when a user changes the weather display.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1895797
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1895797
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
weather_display_mode: &weather_display_mode
description: >
Which display mode is selected.
type: string
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
weather_enabled:
lifetime: application
type: boolean
description: >
Whether the weather widget is enabled on the newtab.
Corresponds to the value of the
`browser.newtabpage.activity-stream.showWeather` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1899340
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1899340
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
- sdowne@mozilla.com
expires: never
send_in_pings:
- newtab
weather_open_provider_url:
type: event
description: >
Recorded when a user opens a link to the Weather provider website.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1895797
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1895797
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
weather_impression:
type: event
description: >
Recorded when the weather widget is viewed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1898275
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1895797
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
weather_load_error:
type: event
description: >
Recorded when the weather widget is not available
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1898275
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1895797
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
weather_location_selected:
type: event
description: >
Recorded when a user selects a location for weather widget
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900103
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1900103
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
fakespot_dismiss:
type: event
description: >
Recorded when a user dissmisses TBR fakespot feed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
fakespot_about_click:
type: event
description: >
Recorded when a user the 'About Fakespot' link in TBR fakespot feed context menu
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
fakespot_click:
type: event
description: >
Recorded when a user clicks on a card in TBR fakespot feed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
product_id:
description: >
id of fakespot product
type: string
category:
description: >
category of fakespot product
type: string
send_in_pings:
- newtab
fakespot_product_impression:
type: event
description: >
Recorded when a user triggers an impression on a card in TBR fakespot feed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
product_title:
description: >
title of fakespot product
type: string
product_id:
description: >
id of fakespot product
type: string
category:
description: >
category of fakespot product
type: string
send_in_pings:
- newtab
fakespot_cta_click:
type: event
description: >
Recorded when a user clicks on the CTA in TBR fakespot feed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
fakespot_category:
type: event
description: >
Recorded when a user changes the category in TBR fakespot feed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1924873
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
category:
description: >
category that user selected
type: string
send_in_pings:
- newtab
sections_impression:
type: event
description: >
Recorded when a section is viewport and triggers an impression event
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1927916
- https://bugzilla.mozilla.org/show_bug.cgi?id=1938215
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1927916
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
section:
description: >
section that had impression event
type: string
section_position:
description: >
position of section on newtab
type: string
is_section_followed: &is_section_followed
description: >
If click belongs in a section, if that section is followed
type: boolean
send_in_pings:
- newtab
sections_follow_section:
type: event
description: >
Recorded when a section is followed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
section:
description: >
section that had impression event
type: string
section_position:
description: >
position of section on newtab
type: string
event_source: &event_source
description: >
Where the source of the event originated ("button", "context menu", etc.)
type: string
send_in_pings:
- newtab
sections_unfollow_section:
type: event
description: >
Recorded when a section is unfollowed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
section:
description: >
section that had impression event
type: string
section_position:
description: >
position of section on newtab
type: string
event_source: *event_source
send_in_pings:
- newtab
sections_block_section:
type: event
description: >
Recorded when a section is blocked
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
section:
description: >
section that had impression event
type: string
section_position:
description: >
position of section on newtab
type: string
event_source: *event_source
send_in_pings:
- newtab
sections_unblock_section:
type: event
description: >
Recorded when a section is unblocked
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1940566
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1940566
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
section:
description: >
section that had unblock event
type: string
section_position:
description: >
position of section on newtab
type: string
event_source: *event_source
send_in_pings:
- newtab
inline_selection_impression:
type: event
description: >
Recorded when there is an impression on the inline selection component
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1943474
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1943474
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
section_position:
description: >
position of the inline selection component (index point within sections)
type: string
send_in_pings:
- newtab
inline_selection_click:
type: event
description: >
Recorded when there is a click on the inline selection component
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1943474
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1943474
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
topic:
description: >
unique id of topic that was clicked
type: string
is_followed:
description: >
whether the click followed a topic or unfollowed. True for followed, false for unfollowed
type: boolean
section_position:
description: >
position of the inline selection component (index point within sections)
type: string
topic_position:
description: >
position of the topic within the inline selection component (index point starting at 0)
type: string
send_in_pings:
- newtab
abouthome_cache_construction:
type: timing_distribution
description: >
The length of time (in milliseconds) that it takes for the cache worker to
generate the cache and return it to the main thread
This metric was generated to correspond to the Legacy Telemetry
exponential histogram FX_ABOUTHOME_CACHE_CONSTRUCTION.
time_unit: millisecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1622263
- https://bugzilla.mozilla.org/show_bug.cgi?id=1683101
- https://bugzilla.mozilla.org/show_bug.cgi?id=1714258
- https://bugzilla.mozilla.org/show_bug.cgi?id=1730042
- https://bugzilla.mozilla.org/show_bug.cgi?id=1754641
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781978
- https://bugzilla.mozilla.org/show_bug.cgi?id=1811151
- https://bugzilla.mozilla.org/show_bug.cgi?id=1841926
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1622263
- https://bugzilla.mozilla.org/show_bug.cgi?id=1683101
- https://bugzilla.mozilla.org/show_bug.cgi?id=1714258
- https://bugzilla.mozilla.org/show_bug.cgi?id=1730042
- https://bugzilla.mozilla.org/show_bug.cgi?id=1754641
- https://bugzilla.mozilla.org/show_bug.cgi?id=1781978
- https://bugzilla.mozilla.org/show_bug.cgi?id=1811151
- https://bugzilla.mozilla.org/show_bug.cgi?id=1841926
notification_emails:
- mconley@mozilla.com
expires: never
telemetry_mirror: FX_ABOUTHOME_CACHE_CONSTRUCTION
report_content_open:
type: event
description: >
Recorded when content reporting is opened from context menu
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1954656
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1954656
data_sensitivity:
- interaction
notification_emails:
- rhamoui@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
report_content_submit:
type: event
description: >
Recorded when content reporting has been submitted
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1954656
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1954656
data_sensitivity:
- interaction
notification_emails:
- rhamoui@mozilla.com
expires: never
extra_keys:
card_type:
description: >
The type of the content card (e.g., "spoc", "organic")
type: string
corpus_item_id:
description: >
A content identifier.
For organic Newtab recommendations it is an opaque id produced by
Newtab's recommendation systems that corresponds uniquely to the URL.
This is the replacement for tile_id and scheduled_corpus_item_id.
type: string
is_section_followed:
description: >
If click belongs in a section, if that section is followed
type: boolean
newtab_visit_id:
description: >
The id of this newtab visit.
Allows you to separate multiple simultaneous newtabs and
build an event timeline of actions taken from this newtab.
type: string
received_rank:
description: >
The rank or order of the recommendation at the time it was sent to the client.
type: quantity
recommended_at:
description: >
The time in milliseconds the recommendation was recommended at.
type: quantity
report_reason:
description: >
The reason selected by the user when reporting the content
type: string
scheduled_corpus_item_id:
description: >
A content identifier.
For organic Newtab recommendations it is an opaque id produced by
Newtab's recommendation systems that corresponds uniquely to
a piece of content scheduled for a specific day on a specific surface.
This is the replacement for tile_id.
type: string
section:
description: >
If click belongs in a section, the name of the section
type: string
section_position:
description: >
If click belongs in a section, the numeric position of the section
type: string
title:
description: >
Title of the recommendation.
type: string
topic:
description: >
The topic of the recommendation. Like "entertainment".
type: string
url:
description: >
URL of the recommendation.
type: string
send_in_pings:
- newtab
metric_registered:
type: labeled_boolean
description: >
Records technical data about whether the metric registration
at runtime succeeded
bugs:
- https://bugzil.la/1961989
data_reviews:
- https://bugzil.la/1961989
data_sensitivity:
- technical
notification_emails:
- pdahiya@mozilla.com
- mconley@mozilla.com
expires: never
ping_registered:
type: labeled_boolean
description: >
Records technical data about whether the ping registration
at runtime succeeded
bugs:
- https://bugzil.la/1961989
data_reviews:
- https://bugzil.la/1961989
data_sensitivity:
- technical
notification_emails:
- pdahiya@mozilla.com
- mconley@mozilla.com
expires: never
activity_stream_ctor_success:
type: boolean
description: >
Records technical data about whether Activity Stream
construction completed successfully
bugs:
- https://bugzil.la/1965278
data_reviews:
- https://bugzil.la/1965278
data_sensitivity:
- technical
notification_emails:
- pdahiya@mozilla.com
- mconley@mozilla.com
expires: never
addon_ready_success:
type: boolean
description: >
Records technical data about whether waiting for the newtab built-in
addon readyPromise succeeded.
bugs:
- https://bugzil.la/1965923
data_reviews:
- https://bugzil.la/1965923
data_sensitivity:
- technical
notification_emails:
- pdahiya@mozilla.com
- mconley@mozilla.com
expires: never
trending_search_impression:
type: event
description: >
records an impression when a trending search widget is visible to the user
bugs:
- https://bugzil.la/1969595
data_reviews:
- https://bugzil.la/1969595
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
variant: &variant
description: Variant of widget rendered ("a" || "b")
type: string
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
trending_search_dismiss:
type: event
description: >
recorded when a user either collapses or dismisses the
trending search widget
bugs:
- https://bugzil.la/1969595
data_reviews:
- https://bugzil.la/1969595
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
variant: *variant
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
trending_search_suggestion_open:
type: event
description: >
recorded when a user opens a suggested search link
bugs:
- https://bugzil.la/1969595
data_reviews:
- https://bugzil.la/1969595
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
extra_keys:
variant: *variant
newtab_visit_id: *newtab_visit_id
send_in_pings:
- newtab
feature_highlight_dismiss:
type: event
description: >
recorded when a feature highlight is dismissed
bugs:
- https://bugzil.la/1972931
data_reviews:
- https://bugzil.la/1972931
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
feature: *feature
send_in_pings:
- newtab
feature_highlight_impression:
type: event
description: >
recorded when a feature highlight impression occurs
bugs:
- https://bugzil.la/1972931
data_reviews:
- https://bugzil.la/1972931
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
feature: *feature
send_in_pings:
- newtab
feature_highlight_open:
type: event
description: >
recorded when a feature highlight is opened
bugs:
- https://bugzil.la/1972931
data_reviews:
- https://bugzil.la/1972931
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
feature: *feature
send_in_pings:
- newtab
newtab.search:
enabled:
lifetime: application
type: boolean
description: >
Whether the search input is enabled on the newtab.
Corresponds to the value of the
`browser.newtabpage.activity-stream.showSearch` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- technical
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
newtab.handoff_preference:
enabled:
lifetime: application
type: boolean
description: >
Records whether the
browser.newtabpage.activity-stream.improvesearch.handoffToAwesomebar preference is
enabled or disabled
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1864496
- https://bugzilla.mozilla.org/show_bug.cgi?id=1892148
- https://bugzilla.mozilla.org/show_bug.cgi?id=1940643
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1864496
- https://bugzilla.mozilla.org/show_bug.cgi?id=1892148
- https://bugzilla.mozilla.org/show_bug.cgi?id=1940643
data_sensitivity:
- interaction
expires: 144
notification_emails:
- fx-search-telemetry@mozilla.com
topsites:
enabled:
lifetime: application
type: boolean
description: >
Whether "topsites" is enabled on the newtab.
AKA the "Shortcuts" section.
Corresponds to the value of the
`browser.newtabpage.activity-stream.feeds.topsites` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- technical
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
sponsored_enabled:
lifetime: application
type: boolean
description: >
Whether sponsored topsites are enabled on the newtab.
AKA the "Sponsored Shortcuts" section.
Corresponds to the value of the
`browser.newtabpage.activity-stream.showSponsoredTopSites` pref.
Can be `true` even if topsites.enabled is `false`.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- technical
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
impression:
type: event
description: >
Recorded when topsite tiles are loaded.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
- https://bugzilla.mozilla.org/show_bug.cgi?id=1820707
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
- https://bugzilla.mozilla.org/show_bug.cgi?id=1820707#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1821556#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1824842#c7
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
extra_keys:
advertiser_name: &advertiser_name
description: >
The name of the advertiser of the tile
type: string
tile_id: &tile_id
description: >
The tile id of the advertiser provided by Contile. Like `74357`.
type: quantity
newtab_visit_id: *newtab_visit_id
is_sponsored: &is_sponsored
description: Whether the topsite tile was sponsored.
type: boolean
position: &topsite_position
description: The position (0-index) of the topsite tile.
type: quantity
send_in_pings:
- newtab
click:
type: event
description: >
Recorded when a topsite tile is clicked.
Only happens on click. Not on middle-click. Not on "Open in new Tab"-like
options in the context menu.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
- https://bugzilla.mozilla.org/show_bug.cgi?id=1820707
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1766887
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786670#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
- https://bugzilla.mozilla.org/show_bug.cgi?id=1820707#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1821556#c3
- https://bugzilla.mozilla.org/show_bug.cgi?id=1824842#c7
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
extra_keys:
advertiser_name: *advertiser_name
tile_id: *tile_id
newtab_visit_id: *newtab_visit_id
is_sponsored: *is_sponsored
position: *topsite_position
send_in_pings:
- newtab
pin:
type: event
description: >
Recorded when a topsite tile is pinned.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968053
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968053
data_sensitivity:
- interaction
notification_emails:
- sdowne@mozilla.com
- achurchwell@mozilla.com
expires: never
extra_keys:
advertiser_name: *advertiser_name
tile_id: *tile_id
newtab_visit_id: *newtab_visit_id
is_sponsored: *is_sponsored
position: *topsite_position
send_in_pings:
- newtab
unpin:
type: event
description: >
Recorded when a topsite tile is unpinned.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968053
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968053
data_sensitivity:
- interaction
notification_emails:
- sdowne@mozilla.com
- achurchwell@mozilla.com
expires: never
extra_keys:
advertiser_name: *advertiser_name
tile_id: *tile_id
newtab_visit_id: *newtab_visit_id
is_sponsored: *is_sponsored
position: *topsite_position
send_in_pings:
- newtab
add:
type: event
description: >
Recorded when a topsite tile is added
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968053
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968053
data_sensitivity:
- interaction
notification_emails:
- sdowne@mozilla.com
- achurchwell@mozilla.com
expires: never
extra_keys:
advertiser_name: *advertiser_name
tile_id: *tile_id
newtab_visit_id: *newtab_visit_id
is_sponsored: *is_sponsored
position: *topsite_position
send_in_pings:
- newtab
edit:
type: event
description: >
Recorded when a topsite tile is edited
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968053
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1968053
data_sensitivity:
- interaction
notification_emails:
- sdowne@mozilla.com
- achurchwell@mozilla.com
expires: never
extra_keys:
advertiser_name: *advertiser_name
tile_id: *tile_id
newtab_visit_id: *newtab_visit_id
is_sponsored: *is_sponsored
position: *topsite_position
has_title_changed: &has_title_changed
description: Whether the topsite title was changed.
type: boolean
has_url_changed: &has_url_changed
description: Whether the topsite URL was changed.
type: boolean
send_in_pings:
- newtab
show_privacy_click:
type: event
description: >
Recorded when the "Our Sponsors and Your Privacy" menu item in the three-
dots menu of a sponsored topsite is clicked.
Corresponds to the receipt of a dispatched `ABOUT_SPONSORED_TOP_SITES`
action by `TelemetryFeed`.
bugs:
- https://mozilla-hub.atlassian.net/browse/DENG-1364
- https://bugzilla.mozilla.org/show_bug.cgi?id=1857324
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1857324
data_sensitivity: [interaction]
notification_emails:
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- sbetancourt@mozilla.com
expires: never
extra_keys:
advertiser_name: *advertiser_name
tile_id: *tile_id
newtab_visit_id: *newtab_visit_id
position: *topsite_position
send_in_pings:
- newtab
dismiss:
type: event
description: >
Recorded when the "Dismiss" menu item in the three-dots menu of a topsite
is clicked.
Corresponds to the receipt of a dispatched `BLOCK_URL` action by
`TelemetryFeed`.
Applies to both sponsored and non-sponsored topsites.
`advertiser_name` is only provided for sponsored topsites.
bugs:
- https://mozilla-hub.atlassian.net/browse/DENG-1363
- https://bugzilla.mozilla.org/show_bug.cgi?id=1857324
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1857324
data_sensitivity: [interaction]
notification_emails:
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- sbetancourt@mozilla.com
- kdemtchouk@mozilla.com
- mbowerman@mozilla.com
expires: never
extra_keys:
advertiser_name: *advertiser_name
tile_id: *tile_id
newtab_visit_id: *newtab_visit_id
is_sponsored: *is_sponsored
position: *topsite_position
send_in_pings:
- newtab
pref_changed:
type: event
description: >
Recorded when specific topsites prefs have changed.
The list of possible prefs is presently:
* browser.newtabpage.activity-stream.feeds.topsites
* browser.newtabpage.activity-stream.showSponsoredTopSites
bugs:
- https://mozilla-hub.atlassian.net/browse/D0-1293
- https://bugzilla.mozilla.org/show_bug.cgi?id=1857324
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1857324
data_sensitivity: [interaction]
notification_emails:
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- sbetancourt@mozilla.com
- kdemtchouk@mozilla.com
- mbowerman@mozilla.com
expires: never
extra_keys:
pref_name:
description: The full name of the pref whose value just changed.
type: string
new_value:
description: The new (current) value the pref just changed to.
type: boolean
send_in_pings:
- newtab
rows:
lifetime: application
type: quantity
unit: integer
description: >
The number of topsite tile rows configured to be shown on the newtab
page. Corresponds to the value of the
`browser.newtabpage.activity-stream.topSitesRows` pref. This is not the
number of rows actually seen by the user: if the browser window is
partially off-screen, or isn't wide enough to accommodate eight tiles per
row, the actual number of rows may be different.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1821556
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1821556#c3
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
sponsored_tiles_configured:
lifetime: application
type: quantity
unit: integer
description: >
The number of topsite tiles configured to be shown on newtab.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1862493
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi
data_sensitivity:
- technical
notification_emails:
- gleonard@mozilla.com
expires: never
send_in_pings:
- newtab
sponsored_tiles_received:
lifetime: application
type: text
description: >
The stringified JSON of tiles processed for display (array of objects).
Includes tiles not displayed and reason for not displaying.
Fields included: advertiser, provider, display_position,
display_fail_reason.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi
data_sensitivity:
- web_activity
notification_emails:
- gleonard@mozilla.com
expires: never
send_in_pings:
- newtab
pocket:
is_signed_in:
lifetime: application
type: boolean
description: >
Whether the Firefox user is signed in to Pocket.
Does not correspond to a pref, so its value is resampled at newtab's
component init and whenever there is a Discovery Stream user event.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- technical
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
enabled:
lifetime: application
type: boolean
description: >
Whether Pocket is enabled on the newtab.
AKA the "Recommended by Pocket" section.
Corresponds to the value of the
`browser.newtabpage.activity-stream.feeds.section.topstories` pref.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- technical
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
sponsored_stories_enabled:
lifetime: application
type: boolean
description: >
Whether Pocket sponsored stories are enabled on the newtab.
Corresponds to the value of the
`browser.newtabpage.activity-stream.showSponsored` pref.
Can be `true` even if pocket.enabled is `false`.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
data_sensitivity:
- technical
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
send_in_pings:
- newtab
impression:
type: event
description: >
Recorded when a pocket tile is visible to the user.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
- https://bugzilla.mozilla.org/show_bug.cgi?id=1862670
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937200
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
- sdowne@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
is_sponsored: &is_sponsored_pocket
description: Whether the pocket tile was sponsored (has an ad callback).
type: boolean
format: &format
description: The format of whatever item is displayed. It can differ if the content is an ad or organic. Possible responses are "spoc", "rectangle" (for ads) "billboard", "leaderboard", "small-card", "medium-card", "large-card" (for organic content).
type: string
position: &pocket_position
description: The position (0-index) of the pocket tile.
type: quantity
recommendation_id: &recommendation_id
description: >
The id from the Pocket API response that returned the recommendation.
Like "{61934fe5-fbb0-4f4e-b9dd-7eab5f6ee9cd}".
type: string
tile_id: &pocket_tile_id
description: >
A content identifier.
For organic Pocket recommendations it is an opaque id produced by
Pocket's recommendation systems.
For sponsored Pocket content it is Kevel's "ad ID".
type: quantity
scheduled_corpus_item_id: &scheduled_corpus_item_id
description: >
A content identifier.
For organic Newtab recommendations it is an opaque id produced by
Newtab's recommendation systems that corresponds uniquely to
a piece of content scheduled for a specific day on a specific surface.
This is the replacement for tile_id.
type: string
corpus_item_id: &corpus_item_id
description: >
A content identifier.
For organic Newtab recommendations it is an opaque id produced by
Newtab's recommendation systems that corresponds uniquely to the URL.
This is the replacement for tile_id and scheduled_corpus_item_id.
type: string
received_rank: &received_rank
description: The rank or order of the recommendation at the time it was sent to the client.
type: quantity
recommended_at: &recommended_at
description: The time in milliseconds the recomendation was recommended at.
type: quantity
topic:
description: The topic of the recommendation. Like "entertainment".
type: string
selected_topics:
description: >
The list of topics the user selected
type: string
is_list_card:
description: >
Where the article card is in the list component
type: boolean
section:
description: >
If click belongs in a section, the name of the section
type: string
section_position:
description: >
If click belongs in a section, the numeric position of the section
type: string
is_section_followed: *is_section_followed
send_in_pings:
- newtab
click:
type: event
description: >
Recorded when a pocket tile is clicked.
Only happens on click. Not on middle-click. Not on "Open in new Tab"-like
options in the context menu.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
- https://bugzilla.mozilla.org/show_bug.cgi?id=1862670
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937200
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
- sdowne@mozilla.com
- mcrawford@mozilla.ccocm
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
is_sponsored: *is_sponsored_pocket
format: *format
position: *pocket_position
recommendation_id: *recommendation_id
tile_id: *pocket_tile_id
scheduled_corpus_item_id: *scheduled_corpus_item_id
corpus_item_id: *corpus_item_id
received_rank: *received_rank
recommended_at: *recommended_at
matches_selected_topic:
description: >
Returns value based on if a the topic of the pocket recommendation matches one
of the user-selected topic categories
type: string
topic:
description: The topic of the recommendation. Like "entertainment".
type: string
selected_topics:
description: >
The list of topics the user selected
type: string
is_list_card:
description: >
Where the article card is in the list component
type: boolean
section:
description: >
If click belongs in a section, the name of the section
type: string
section_position:
description: >
If click belongs in a section, the numeric position of the section
type: string
is_section_followed: *is_section_followed
event_source: *event_source
send_in_pings:
- newtab
dismiss:
type: event
description: >
Recorded when a pocket tile is dismissed.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937200
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
data_sensitivity:
- interaction
notification_emails:
- sdowne@mozilla.com
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
is_sponsored: *is_sponsored_pocket
format: *format
position: *pocket_position
recommendation_id: *recommendation_id
tile_id: *pocket_tile_id
scheduled_corpus_item_id: *scheduled_corpus_item_id
corpus_item_id: *corpus_item_id
received_rank: *received_rank
recommended_at: *recommended_at
is_list_card:
description: >
Where the article card is in the list component
type: boolean
section:
description: >
If click belongs in a section, the name of the section
type: string
section_position:
description: >
If click belongs in a section, the numeric position of the section
type: string
is_section_followed: *is_section_followed
send_in_pings:
- newtab
save:
type: event
description: >
Recorded when a user decides to save a pocket tile.
Does not mean it ends up successfully saved.
Just that the user clicked on "Save to Pocket" in the little pocket
tile menu.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
- https://bugzilla.mozilla.org/show_bug.cgi?id=1862670
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937200
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
is_sponsored: *is_sponsored_pocket
format: *format
position: *pocket_position
recommendation_id: *recommendation_id
tile_id: *pocket_tile_id
scheduled_corpus_item_id: *scheduled_corpus_item_id
corpus_item_id: *corpus_item_id
received_rank: *received_rank
recommended_at: *recommended_at
topic:
description: The topic of the recommendation. Like "entertainment".
type: string
matches_selected_topic:
description: >
Returns value based on if a the topic of the pocket recommendation matches one
of the user-selected topic categories
type: string
selected_topics:
description: >
The list of topics the user selected
type: string
is_list_card:
description: >
Where the article card is in the list component
type: boolean
section:
description: >
If click belongs in a section, the name of the section
type: string
section_position:
description: >
If click belongs in a section, the numeric position of the section
type: string
is_section_followed: *is_section_followed
send_in_pings:
- newtab
topic_click:
type: event
description: >
Recorded when a pocket "Popular Topic" is clicked.
Only happens on click. Not on middle-click. Not on "Open in new Tab"-like
options in the context menu.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
topic:
description: The topic that was clicked on. Like "entertainment".
type: string
send_in_pings:
- newtab
shim:
type: text
lifetime: ping
description: |
Opaque partner identifier for a given ad impression or engagement action,
unique per market and region.
Pocket
[proxies requests to ad partners](https://github.com/Pocket/proxy-server/)
and provides them solely with market, region, and action to generate these
shims. Thus, though the contents of this field are obscure, they cannot
identify clients.
At time of writing this information is a comma-separated trio.
The first item is an index into the proxy server's list of acceptable http
endpoints for contacting the ad service. The second item is a
several-hundred-byte base64-encoded JSON-encoded struct with fields for,
amongst other things, market and region. The third is unknown, but appears
to be a signature or checksum.
This shim should not be sent with the client_id.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1862670
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1862670
data_sensitivity:
- stored_content # Required for text type, and to encourage scrutiny
notification_emails:
- chutten@mozilla.com
- najiang@mozilla.com
expires: never
send_in_pings:
- spoc
fetch_timestamp:
type: datetime
lifetime: ping
description: |
Timestamp of when the spoc was fetched by the client
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1887655
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1887655
notification_emails:
- dmueller@mozilla.com
expires: never
send_in_pings:
- spoc
newtab_creation_timestamp:
type: datetime
lifetime: ping
description: |
Timestamp of when this instance of the newtab was first visible to the user.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1887655
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1887655
notification_emails:
- dmueller@mozilla.com
expires: never
send_in_pings:
- spoc
thumb_voting_interaction:
type: event
description: >
Recorded when a thumbs up/down on a tile is clicked.
Only happens on click. Not on middle-click. Not on "Open in new Tab"-like
options in the context menu.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1902099
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937200
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1902099
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
newtab_visit_id: *newtab_visit_id
recommendation_id: *recommendation_id
tile_id: *pocket_tile_id
format: *format
thumbs_up:
description: >
If the user clicked thumbs up.
type: boolean
thumbs_down:
description: >
If the user clicked thumbs down.
type: boolean
scheduled_corpus_item_id: *scheduled_corpus_item_id
corpus_item_id: *corpus_item_id
received_rank: *received_rank
recommended_at: *recommended_at
topic:
description: The topic of the recommendation. Like "entertainment".
type: string
is_list_card:
description: >
Where the article card is in the list component
type: boolean
section:
description: >
If event belongs in a section, the name of the section
type: string
section_position:
description: >
If event belongs in a section, the numeric position of the section
type: string
is_section_followed: *is_section_followed
send_in_pings:
- newtab
newtab_content:
experiment_name:
type: string
description: >
The name of the primary new tab content experiment. We don't include all experiments to prevent user fingerprinting.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1966796
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1966796
data_sensitivity:
- technical
notification_emails:
- nbarrett@mozilla.com
expires: never
lifetime: application
send_in_pings:
- newtab-content
experiment_branch:
type: string
description: >
The branch of the primary new tab content experiment. We don't include all experiments to prevent user fingerprinting.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1966796
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1966796
data_sensitivity:
- technical
notification_emails:
- nbarrett@mozilla.com
expires: never
lifetime: application
send_in_pings:
- newtab-content
inferred_interests:
type: object
description: >
Differentially private high-level inferred interests (e.g. Entertainment or News), encoded in a JSON string.
Key is the feature, and the value is a unary encoded string that must be decoded based on known differential
privacy q and p values. Example "{"arts":"001"}"
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1966796
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1966796
data_sensitivity:
- technical
notification_emails:
- nbarrett@mozilla.com
expires: never
lifetime: application
send_in_pings:
- newtab-content
structure:
type: object
properties:
values:
type: array
items:
type: string
model_id:
type: string
coarse_os:
type: string
description: >
The name of the operating system. Possible values:
Android, iOS, Linux, Windows, or macOS
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_sensitivity:
- technical
notification_emails:
- nbarrett@mozilla.com
expires: never
lifetime: application
send_in_pings:
- newtab-content
utc_offset:
type: quantity
description: >
<0-24> positive UTC offset, rounded to the nearest integer number greater than 0.
(If less than 0, then add 24.). The value may be clamped by expected time zone ranges for a surface.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_sensitivity:
- technical
notification_emails:
- nbarrett@mozilla.com
expires: never
send_in_pings:
- newtab-content
lifetime: application
unit: utc offset
country:
type: string
description: >
Records the detected home region of the user. This is the general region
of the user's machine.
If a machine moves location, there is a minimum 2-week delay before this
will be updated.
See the [Region documentation](https://firefox-source-docs.mozilla.org/toolkit/modules/toolkit_modules/Region.html)
for more information about updates.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1964428
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1964428
data_sensitivity:
- technical
notification_emails:
- nbarrett@mozilla.com
expires: never
send_in_pings:
- newtab-content
lifetime: application
surface_id:
type: string
description: >
Surface id sent to the client from merino api
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_sensitivity:
- technical
notification_emails:
- nbarrett@mozilla.com
expires: never
send_in_pings:
- newtab-content
- newtab
lifetime: application
followed_sections:
type: string_list
description: >
Optional metric: section ids followed by user in alphabetical order, if possible,
ordered by most recently followed. Max 2 sections
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
expires: never
send_in_pings:
- newtab-content
lifetime: application
impression:
type: event
description: >
Recorded when a pocket tile is visible to the user.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
- https://bugzilla.mozilla.org/show_bug.cgi?id=1862670
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937200
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1817105#c11
- https://bugzilla.mozilla.org/show_bug.cgi?id=1854245
data_sensitivity:
- interaction
notification_emails:
- anicholson@mozilla.com
- chutten@mozilla.com
- mmccorquodale@mozilla.com
- najiang@mozilla.com
- lina@mozilla.com
- sdowne@mozilla.com
expires: never
extra_keys:
is_sponsored: *is_sponsored_pocket
format: *format
position: *pocket_position
recommendation_id: *recommendation_id
tile_id: *pocket_tile_id
scheduled_corpus_item_id: *scheduled_corpus_item_id
corpus_item_id: *corpus_item_id
received_rank: *received_rank
recommended_at: *recommended_at
topic:
description: The topic of the recommendation. Like "entertainment".
type: string
selected_topics:
description: >
The list of topics the user selected
type: string
is_list_card:
description: >
Where the article card is in the list component
type: boolean
section:
description: >
If click belongs in a section, the name of the section
type: string
section_position:
description: >
If click belongs in a section, the numberic position of the section
type: string
is_section_followed:
description: >
If click belongs in a section, if that section is followed
type: boolean
send_in_pings:
- newtab-content
click:
type: event
description: >
Recorded when a pocket tile is clicked.
Only happens on click. Not on middle-click. Not on "Open in new Tab"-like
options in the context menu.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1956331
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.cocm
expires: never
extra_keys:
is_sponsored: *is_sponsored_pocket
format: *format
position: *pocket_position
recommendation_id: *recommendation_id
tile_id: *pocket_tile_id
scheduled_corpus_item_id: *scheduled_corpus_item_id
corpus_item_id: *corpus_item_id
received_rank: *received_rank
recommended_at: *recommended_at
matches_selected_topic:
description: >
Returns value based on if a the topic of the pocket recommendation matches one
of the user-selected topic categories
type: string
topic:
description: The topic of the recommendation. Like "entertainment".
type: string
selected_topics:
description: >
The list of topics the user selected
type: string
is_list_card:
description: >
Where the article card is in the list component
type: boolean
section:
description: >
If click belongs in a section, the name of the section
type: string
section_position:
description: >
If click belongs in a section, the numberic position of the section
type: string
is_section_followed:
description: >
If click belongs in a section, if that section is followed
type: boolean
send_in_pings:
- newtab-content
dismiss:
type: event
description: >
Recorded when a pocket tile is dismissed.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937200
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1786612
data_sensitivity:
- interaction
notification_emails:
- sdowne@mozilla.com
- mcrawford@mozilla.com
expires: never
extra_keys:
is_sponsored: *is_sponsored_pocket
format: *format
position: *pocket_position
recommendation_id: *recommendation_id
tile_id: *pocket_tile_id
scheduled_corpus_item_id: *scheduled_corpus_item_id
corpus_item_id: *corpus_item_id
received_rank: *received_rank
recommended_at: *recommended_at
section:
description: >
If click belongs in a section, the name of the section
type: string
section_position:
description: >
If click belongs in a section, the numberic position of the section
type: string
is_section_followed:
description: >
If click belongs in a section, if that section is followed
type: boolean
send_in_pings:
- newtab-content
thumb_voting_interaction:
type: event
description: >
Recorded when a thumbs up/down on a tile is clicked.
Only happens on click. Not on middle-click. Not on "Open in new Tab"-like
options in the context menu.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1902099
- https://bugzilla.mozilla.org/show_bug.cgi?id=1937200
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1902099
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
recommendation_id: *recommendation_id
tile_id: *pocket_tile_id
thumbs_up:
description: >
If the user clicked thumbs up.
type: boolean
thumbs_down:
description: >
If the user clicked thumbs down.
type: boolean
scheduled_corpus_item_id: *scheduled_corpus_item_id
corpus_item_id: *corpus_item_id
received_rank: *received_rank
recommended_at: *recommended_at
topic:
description: The topic of the recommendation. Like "entertainment".
type: string
is_list_card:
description: >
Where the article card is in the list component
type: boolean
section:
description: >
If event belongs in a section, the name of the section
type: string
section_position:
description: >
If event belongs in a section, the numberic position of the section
type: string
is_section_followed:
description: >
If event belongs in a section, if that section is followed
type: boolean
send_in_pings:
- newtab-content
sections_impression:
type: event
description: >
Recorded when a section is viewport and triggers an impression event
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1927916
- https://bugzilla.mozilla.org/show_bug.cgi?id=1938215
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1927916
data_sensitivity:
- interaction
notification_emails:
- nbarrett@mozilla.com
- mcrawford@mozilla.com
expires: never
extra_keys:
section:
description: >
section that had impression event
type: string
section_position:
description: >
position of section on newtab
type: string
is_section_followed:
description: >
If click belongs in a section, if that section is followed
type: boolean
send_in_pings:
- newtab-content
sections_follow_section:
type: event
description: >
Recorded when a section is followed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
section:
description: >
section that had impression event
type: string
section_position:
description: >
position of section on newtab
type: string
event_source: *event_source
send_in_pings:
- newtab-content
sections_unfollow_section:
type: event
description: >
Recorded when a section is unfollowed
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
section:
description: >
section that had impression event
type: string
section_position:
description: >
position of section on newtab
type: string
event_source: *event_source
send_in_pings:
- newtab-content
sections_block_section:
type: event
description: >
Recorded when a section is blocked
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1932191
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
section:
description: >
section that had impression event
type: string
section_position:
description: >
position of section on newtab
type: string
event_source: *event_source
send_in_pings:
- newtab-content
sections_unblock_section:
type: event
description: >
Recorded when a section is unblocked
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1940566
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1940566
data_sensitivity:
- interaction
notification_emails:
- mcrawford@mozilla.com
expires: never
extra_keys:
section:
description: >
section that had unblock event
type: string
section_position:
description: >
position of section on newtab
type: string
event_source: *event_source
send_in_pings:
- newtab-content
top_sites: # Replacement for PingCentre "topsites-impression|click" pings.
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. "topsites-impression",
"topsites-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:
- top-sites
position:
type: quantity
unit: topsite position
description: >
The position (1-based) of the topsites 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:
- top-sites
source:
type: string
description: >
The source of the interaction. Always set to "newtab".
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:
- top-sites
tile_id:
type: string
description: >
String-encoded number for the tile's sponsored tile id.
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:
- top-sites
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:
- top-sites
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:
- top-sites
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
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1836283
data_sensitivity:
- technical
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings:
- top-sites
activity_stream:
end_session:
type: event
description: >
This is recorded with every session ended in Activity Stream.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.end#session.
bugs:
- https://bugzil.la/1429497
- https://bugzil.la/1429489
data_reviews:
- https://bugzil.la/1429497
- https://bugzil.la/1429489
notification_emails:
- najiang@mozilla.com
- msamuel@mozilla.com
expires: never
extra_keys:
value:
description: >
The session duration. Mirrors to the Legacy Telemetry
event's `value` parameter.
type: quantity
addon_version:
description: >
The Activity Stream addon version.
type: string
session_id:
description: >
The ID of the Activity Stream session in which the event occurred
type: string
page:
description: >
about:home or about_newtab - the page where the event occurred
type: string
user_prefs:
description: >
An integer representaing a user's A-S settings.
type: quantity
telemetry_mirror: Activity_stream_End_Session
event_block:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#BLOCK.
bugs: &activity_stream_event_bugs
- https://bugzil.la/1429497
- https://bugzil.la/1429489
- https://bugzil.la/1514732
data_reviews: &activity_stream_event_data_reviews
- https://bugzil.la/1429497
- https://bugzil.la/1429489
- https://bugzil.la/1514732
notification_emails: &activity_stream_event_emails
- najiang@mozilla.com
- msamuel@mozilla.com
- rrosario@mozilla.com
expires: never
extra_keys: &activity_stream_event_extra
value:
description: >
The `value` of the event. Mirrors to the Legacy Telemetry
event's `value` parameter.
type: string
addon_version:
description: >
The Activity Stream addon version.
type: string
session_id:
description: >
The ID of the Activity Stream session in which the event occurred
type: string
page:
description: >
about:home or about_newtab - the page where the event occurred
type: string
user_prefs:
description: >
An integer representaing a user's A-S settings.
type: quantity
action_position:
description: >
The index of card receiving interactions.
type: quantity
telemetry_mirror: Activity_stream_Event_Block
event_bookmark_add:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#BOOKMARK_ADD.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_BookmarkAdd
event_bookmark_delete:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#BOOKMARK_DELETE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_BookmarkDelete
event_click:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#CLICK.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_Click
event_click_privacy_info:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#CLICK_PRIVACY_INFO.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_ClickPrivacyInfo
event_close_newtab_prefs:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#CLOSE_NEWTAB_PREFS.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_CloseNewtabPrefs
event_show_personalize:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#SHOW_PERSONALIZE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_ShowPersonalize
event_hide_personalize:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#HIDE_PERSONALIZE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_HidePersonalize
event_delete:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#DELETE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_Delete
event_delete_confirm:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#DELETE_CONFIRM.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_DeleteConfirm
event_dialog_cancel:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#DIALOG_CANCEL.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_DialogCancel
event_dialog_open:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#DIALOG_OPEN.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_DialogOpen
event_drag:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#DRAG.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_Drag
event_drop:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#DROP.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_Drop
event_impression:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#IMPRESSION.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_Impression
event_migration_cancel:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MIGRATION_CANCEL.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MigrationCancel
event_migration_start:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MIGRATION_START.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MigrationStart
event_open_newtab_prefs:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#OPEN_NEWTAB_PREFS.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_OpenNewtabPrefs
event_open_new_window:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#OPEN_NEW_WINDOW.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_OpenNewWindow
event_open_private_window:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#OPEN_PRIVATE_WINDOW.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_OpenPrivateWindow
event_pin:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#PIN.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_Pin
event_pocket_thumbs_down:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#POCKET_THUMBS_DOWN.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_PocketThumbsDown
event_pocket_thumbs_up:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#POCKET_THUMBS_UP.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_PocketThumbsUp
event_fakespot_click:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#FAKESPOT_CLICK.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_FakespotClick
event_fakespot_category:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#FAKESPOT_CATEGORY.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_FakespotCategory
event_pref_changed:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#PREF_CHANGED.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_PrefChanged
event_preview_request:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#PREVIEW_REQUEST.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_PreviewRequest
event_search:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#SEARCH.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_Search
event_search_edit_add:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#SEARCH_EDIT_ADD.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_SearchEditAdd
event_search_edit_close:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#SEARCH_EDIT_CLOSE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_SearchEditClose
event_search_edit_delete:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#SEARCH_EDIT_DELETE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_SearchEditDelete
event_search_handoff:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#SEARCH_HANDOFF.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_SearchHandoff
event_show_privacy_info:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#SHOW_PRIVACY_INFO.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_ShowPrivacyInfo
event_skipped_signin:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#SKIPPED_SIGNIN.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_SkippedSignin
event_submit_email:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#SUBMIT_EMAIL.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_SubmitEmail
event_disclaimer_acked:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#DISCLAIMER_ACKED.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_DisclaimerAcked
event_menu_add_search:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MENU_ADD_SEARCH.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MenuAddSearch
event_menu_add_topsite:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MENU_ADD_TOPSITE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MenuAddTopsite
event_menu_collapse:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MENU_COLLAPSE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MenuCollapse
event_menu_expand:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MENU_EXPAND.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MenuExpand
event_menu_manage:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MENU_MANAGE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MenuManage
event_menu_move_down:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MENU_MOVE_DOWN.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MenuMoveDown
event_menu_move_up:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MENU_MOVE_UP.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MenuMoveUp
event_menu_privacy_notice:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MENU_PRIVACY_NOTICE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MenuPrivacyNotice
event_menu_remove:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#MENU_REMOVE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_MenuRemove
event_top_sites_edit:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#TOP_SITES_EDIT.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_TopSitesEdit
event_top_sites_edit_close:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#TOP_SITES_EDIT_CLOSE.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_TopSitesEditClose
event_topsite_sponsor_info:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#TOPSITE_SPONSOR_INFO.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_TopsiteSponsorInfo
event_unpin:
type: event
description: >
This is recorded with every user interaction on Activity Stream
elements.
This event was generated to correspond to the Legacy Telemetry event
activity_stream.event#UNPIN.
bugs: *activity_stream_event_bugs
data_reviews: *activity_stream_event_data_reviews
notification_emails: *activity_stream_event_emails
expires: never
extra_keys: *activity_stream_event_extra
telemetry_mirror: Activity_stream_Event_Unpin
deletion.request:
impression_id:
type: string
description: >
An identifier used by user interaction pings in Pocket/newtab and
Messaging System.
This metric was generated to correspond to the Legacy Telemetry
scalar deletion.request.impression_id.
bugs:
- https://bugzil.la/1602064
data_reviews:
- https://bugzil.la/1602064
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings: ["deletion-request"]
telemetry_mirror: DELETION_REQUEST_IMPRESSION_ID
context_id:
type: string
description: >
An identifier to identify users for Contextual Services user
interaction pings.
This metric was generated to correspond to the Legacy Telemetry
scalar deletion.request.context_id.
bugs:
- https://bugzil.la/1729474
data_reviews:
- https://bugzil.la/1729474
notification_emails:
- najiang@mozilla.com
expires: never
send_in_pings: ["deletion-request"]
telemetry_mirror: DELETION_REQUEST_CONTEXT_ID
contextual.services.topsites:
impression:
type: labeled_counter
description: >
A keyed uint recording how many times the user has viewed the
sponsored TopSites on the newtab page. The key is a combination of
the source and the placement of the TopSites tile (1-based). such as
'urlbar_1', 'newtab_2'.
This metric was generated to correspond to the Legacy Telemetry
scalar contextual.services.topsites.impression.
bugs:
- https://bugzil.la/1688698
data_reviews:
- https://bugzil.la/1688698
notification_emails:
- najiang@mozilla.com
expires: never
telemetry_mirror: CONTEXTUAL_SERVICES_TOPSITES_IMPRESSION
click:
type: labeled_counter
description: >
A keyed uint recording how many times the user has clicked on the
sponsored TopSites on the newtab page. The key is a combination of
the source and the placement of the TopSites tile (1-based). such as
'urlbar_1', 'newtab_2'.
This metric was generated to correspond to the Legacy Telemetry
scalar contextual.services.topsites.click.
bugs:
- https://bugzil.la/1688698
data_reviews:
- https://bugzil.la/1688698
notification_emails:
- najiang@mozilla.com
expires: never
telemetry_mirror: CONTEXTUAL_SERVICES_TOPSITES_CLICK
|