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
|
# 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/.
# This file defines the metrics that are recorded by the Glean SDK. They are
# automatically converted to platform-specific code at build time using the
# `glean_parser` PyPI package.
# Adding a new metric? Please don't!
# (At least not without the permission of a Telemetry Module Peer)
---
$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0
geckoview:
version:
description: >
The version of the Gecko engine, example: 74.0a1
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gecko.version
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1611240
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1611240#c2
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
build_id:
description: >
The Buildid of the Gecko engine, example: 20200205124310
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gecko.build_id
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1611240
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1611240#c2
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
content_process_lifetime:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GV_CONTENT_PROCESS_LIFETIME_MS
description: >
The uptime of content processes in ms
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1625325
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1625325#c2
notification_emails:
- android-probes@mozilla.com
expires: never
page_load_progress_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GV_PAGE_LOAD_PROGRESS_MS
description: >
Time between page load progress starts (0) and completion (100).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1499418
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- android-probes@mozilla.com
expires: never
page_load_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GV_PAGE_LOAD_MS
description: >
The time taken to load a page. This includes all static contents, no
dynamic content.
Loading of about: pages is not counted.
Back back navigation (sometimes via BFCache) is included which is a
source of bimodality due to the <50ms load times.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1499418
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- android-probes@mozilla.com
expires: never
page_reload_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GV_PAGE_RELOAD_MS
description: >
Time taken to reload a page.
This includes all static contents, no dynamic content.
Loading of about: pages is not counted.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1549519
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- android-probes@mozilla.com
- sefeng@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
startup_runtime:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GV_STARTUP_RUNTIME_MS
description: >
The time taken to initialize GeckoRuntime.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1499418
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- android-probes@mozilla.com
expires: never
document_site_origins:
type: custom_distribution
description: >
When a document is loaded, report the
number of [site origins](https://searchfox.org/
mozilla-central/rev/
3300072e993ae05d50d5c63d815260367eaf9179/
caps/nsIPrincipal.idl#264) of the entire browser
if it has been at least 5 minutes since last
time we collect this data.
range_min: 0
range_max: 100
bucket_count: 50
histogram_type: exponential
unit: number of site_origin
gecko_datapoint: FX_NUMBER_OF_UNIQUE_SITE_ORIGINS_ALL_TABS
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1589700
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1589700#c5
notification_emails:
- sefeng@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
per_document_site_origins:
type: custom_distribution
description: >
When a document is unloaded, report the highest number of
[site origins](https://searchfox.org/
mozilla-central/rev/
3300072e993ae05d50d5c63d815260367eaf9179/
caps/nsIPrincipal.idl#264) loaded simultaneously in that
document.
range_min: 0
range_max: 100
bucket_count: 50
histogram_type: exponential
unit: number of site origins per document
gecko_datapoint: FX_NUMBER_OF_UNIQUE_SITE_ORIGINS_PER_DOCUMENT
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1603185
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1603185#c13
notification_emails:
- barret@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
gfx:
composite_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: COMPOSITE_TIME
description: >
The time taken to composite a frame.
On non-webrender this is the time taken in
`CompositorBridgeParent::CompositeToTarget()`.
On webrender, this is the time taken from the start of
`WebRenderBridgeParent::CompositeToTarget()`,
until the render thread has rendered the frame (in
`RenderThread::HandleFrameOneDoc()`).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1080160
- https://bugzilla.mozilla.org/show_bug.cgi?id=1529352
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580129
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580129#c7
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jnicol@mozilla.com
expires: never
scroll_present_latency:
type: timing_distribution
time_unit: millisecond
description: >
Time between receiving a scroll
event on the event loop and compositing
its result onto the screen (ms).
gecko_datapoint: SCROLL_PRESENT_LATENCY
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1604818
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1604818#c4
notification_emails:
- sefeng@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
gfx.checkerboard:
duration:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: CHECKERBOARD_DURATION
description: >
The duration of a checkerboard event.
Checkerboarding is when painting has not kept up with asynchronous
panning and zooming so the compositor has to display a "checkerboard
pattern" (or in practice, the background color) rather than the actual
page content.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1238040
- https://bugzilla.mozilla.org/show_bug.cgi?id=1539309
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- botond@mozilla.com
expires: never
peak_pixel_count:
type: custom_distribution
range_max: 66355200
bucket_count: 50
histogram_type: exponential
unit: Pixels
gecko_datapoint: CHECKERBOARD_PEAK
description: >
The peak number of CSS pixels that checkerboarded during a checkerboard
event. The minimum value of the largest histogram bucket is the size of
a 4k display with maximum APZ zooming.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1238040
- https://bugzilla.mozilla.org/show_bug.cgi?id=1539309
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- botond@mozilla.com
expires: never
potential_duration:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: CHECKERBOARD_POTENTIAL_DURATION
description: >
The total amount of time that we could reasonably be checkerboarding.
This is the union of two possibly-intersecting sets of time periods:
The first set is that in which checkerboarding was actually happening,
since by definition it could potentially be happening.
The second set is that in which the APZC is actively transforming content
in the compositor, since it could potentially transform it so as to
display checkerboarding to the user. Combined with other information,
this allows us to meaningfully say how frequently users actually
enncounters checkerboarding.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1238040
- https://bugzilla.mozilla.org/show_bug.cgi?id=1539309
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- botond@mozilla.com
expires: never
severity:
type: custom_distribution
range_max: 1073741824
bucket_count: 50
histogram_type: exponential
unit: Opaque unit
gecko_datapoint: CHECKERBOARD_SEVERITY
description: >
An opaque measurement of the severity of a checkerboard event.
This doesn't have units, it's just useful for comparing two checkerboard
events to see which one is worse, for some implementation-specific
definition of "worse". The larger the value, the worse the
checkerboarding.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1238040
- https://bugzilla.mozilla.org/show_bug.cgi?id=1539309
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- botond@mozilla.com
expires: never
gfx.content:
paint_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: CONTENT_PAINT_TIME
description: >
Time spent in the main-thread paint pipeline for content.
For non-webrender, this includes display list building, layer building,
and when OMTP is disabled, rasterization.
For webrender, this includes display list building, and webrender display
list building.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1309442
- https://bugzilla.mozilla.org/show_bug.cgi?id=1489524
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
full_paint_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: CONTENT_FULL_PAINT_TIME
description: >
Time spent in the full paint pipeline for content until it's ready for
composition.
For non-webrender this includes `paint_time`, plus rasterization if OMTP
is enabled.
For webrender, this includes `paint_time`, plus scene building time.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1505858
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jmuizelaar@mozilla.com
expires: never
gfx.content.frame_time:
from_paint:
type: custom_distribution
range_max: 5000
bucket_count: 50
histogram_type: exponential
unit: Percentage of vsync interval
gecko_datapoint: CONTENT_FRAME_TIME
description: >
The time, in percentage of a vsync interval, spent from beginning a paint
in the content process until that frame is presented in the compositor.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1470528
- https://bugzilla.mozilla.org/show_bug.cgi?id=1509536
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jnicol@mozilla.com
expires: never
from_vsync:
type: custom_distribution
range_min: 8
range_max: 792
bucket_count: 100
histogram_type: linear
unit: Percentage of vsync interval
gecko_datapoint: CONTENT_FRAME_TIME_VSYNC
description: >
The time, in percentage of a vsync interval, spent from the vsync that
started a paint in the content process until that frame is presented in
the compositor.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1517355
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
with_svg:
type: custom_distribution
range_max: 5000
bucket_count: 50
histogram_type: exponential
unit: Percentage of vsync interval
gecko_datapoint: CONTENT_FRAME_TIME_WITH_SVG
description: >
The time, in percentage of a vsync interval, spent from beginning a paint
in the content process until that frame is presented in the compositor,
for frames that contained an SVG to be drawn by webrender.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1483549
- https://bugzilla.mozilla.org/show_bug.cgi?id=1509536
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
without_resource_upload:
type: custom_distribution
range_max: 5000
bucket_count: 50
histogram_type: exponential
unit: Percentage of vsync interval
gecko_datapoint: CONTENT_FRAME_TIME_WITHOUT_RESOURCE_UPLOAD
description: >
The time, in percentage of a vsync interval, spent from beginning a paint
in the content process until that frame is presented in the compositor by
webrender, excluding time spent uploading resources.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1503405
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
without_upload:
type: custom_distribution
range_max: 5000
bucket_count: 50
histogram_type: exponential
unit: Percentage of vsync interval
gecko_datapoint: CONTENT_FRAME_TIME_WITHOUT_UPLOAD
description: >
The time, in percentage of a vsync interval, spent from beginning a paint
in the content process until that frame is presented in the compositor by
webrender, excluding time spent uploading any content.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1503405
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
reason:
type: labeled_counter
labels:
- on_time
- no_vsync
- missed_composite
- slow_composite
- missed_composite_mid
- missed_composite_long
- missed_composite_low
- no_vsync_no_id
gecko_datapoint: CONTENT_FRAME_TIME_REASON
description: >
The reason that `gfx.content.frame_time.from_paint` recorded a slow
(>200ms) result, if any.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1510853
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
gfx.webrender:
scenebuild_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: WR_SCENEBUILD_TIME
description: >
The time taken to build a webrender scene.
This occurs each time webrender receives a new display list.
This additionally includes blob rasterization time.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1470901
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jmuizelaar@mozilla.com
expires: never
sceneswap_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: WR_SCENESWAP_TIME
description: >
The time taken to do a webrender scene swap. This is book-keeping that
APZ must perform once webrender has built a new scene.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1470901
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jmuizelaar@mozilla.com
expires: never
framebuild_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: WR_FRAMEBUILD_TIME
description: >
The time taken to build a webrender frame.
This involves calculating the visibility of primitives, requesting
resources, and building the render passes which will be used to render
the frame.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1470901
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jmuizelaar@mozilla.com
expires: never
gfx.display:
count:
description: >
Amount of displays connected to the device
type: quantity
unit: Display count
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.display.count
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
primary_width:
description: >
Width of the primary display, takes device rotation into account.
type: quantity
unit: Pixels
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.display.primary_width
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
primary_height:
description: >
Height of the primary display, takes device rotation into account.
type: quantity
unit: Pixels
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.display.primary_height
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
gfx.adapter.primary:
description:
description: >
Long form description of the Graphics adapter
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.adapter.description
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
vendor_id:
description: >
Graphics adapter vendor identification
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.adapter.vendor_id
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
device_id:
description: >
Graphics adapter device identification
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.adapter.device_id
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
subsystem_id:
description: >
Graphics adapter subsystem identification
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.adapter.subsystem_id
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
ram:
description: >
Graphics adapter dedicated memory
type: quantity
unit: Megabytes
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.adapter.ram
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
driver_files:
description: >
List of graphics adapter driver files
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.adapter.driver_files
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
driver_vendor:
description: >
Graphics adapter driver vendor identification
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.adapter.driver_vendor
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
driver_version:
description: >
Graphics adapter driver version
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.adapter.driver_version
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
driver_date:
description: >
Graphics adapter driver date
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.adapter.driver_date
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
gfx.status:
compositor:
description: >
Name of the graphics compositor in use.
Possible values are "opengl, d3d11, client, webrender or basic"
type: string
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.compositor
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
last_compositor_gecko_version:
description: >
The gecko version at the last time a compositor was initialized, and
therefore when gfx_status_compositor was last updated. Due to
gfx_status_compositor's user lifetime we see lots of unexpected values for
the current gecko version. We believe this is because the user has not
opened a tab since they were updated to a version where webrender should
be enabled on their device. This can be used to verify that theory.
type: string
# Temporary misuse of the user lifetime approved by Glean team
# in order to match gfx_status_compositor's lifetime.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.last_compositor_gecko_version
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1704842
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1704842#c8
notification_emails:
- jnicol@mozilla.com
- gfx-telemetry-alerts@mozilla.com
expires: never
headless:
description: >
Boolean indicated whether graphics is running in
headless (no display) mode
type: boolean
# Temporary misuse of the user lifetime approved by Glean team
# due to limitations in Geckoview streaming telemetry.
# DO NOT DUPLICATE unless approved by Glean team.
lifetime: user
gecko_datapoint: gfx.headless
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
gfx.feature:
webrender:
type: string
description: Whether webrender is enabled or disabled, and why.
lifetime: application
gecko_datapoint: gfx.feature.webrender
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687312
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687312#c5
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jnicol@mozilla.com
expires: never
avif:
decode_result:
type: labeled_counter
labels:
- success
- parse_error
- no_primary_item
- decode_error
- size_overflow
- out_of_memory
- pipe_init_error
- write_buffer_error
- alpha_y_sz_mismatch
- alpha_y_bpc_mismatch
- ispe_mismatch
- render_size_mismatch
- frame_size_changed
- invalid_cicp
- invalid_parse_status
- missing_brand
- ftyp_not_first
- no_image
- multiple_moov
- no_moov
- lsel_no_essential
- a1op_no_essential
- a1lx_essential
- txform_no_essential
- image_item_type
- item_type_missing
- construction_method
- item_loc_not_found
- no_item_data_box
gecko_datapoint: AVIF_DECODE_RESULT
description: >
Decode result of AVIF image.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1670827
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1670827#c9
notification_emails:
- media-alerts@mozilla.com
expires: never
decoder:
type: labeled_counter
labels:
- dav1d
- aom
gecko_datapoint: AVIF_DECODER
description: >
Decoder of AVIF image.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1670827
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1670827#c9
notification_emails:
- media-alerts@mozilla.com
expires: never
aom_decode_error:
type: labeled_counter
labels:
- error
- mem_error
- abi_mismatch
- incapable
- unsup_bitstream
- unsup_feature
- corrupt_frame
- invalid_param
gecko_datapoint: AVIF_AOM_DECODE_ERROR
description: >
Image-decode Error from AOM decoder
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1690406
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1690406#c3
notification_emails:
- media-alerts@mozilla.com
expires: never
# dav1d_decode_error is replaced by avif.dav1d_get_picture in Events.yaml
# Unfortunately, events are not currently supported for geckoview
yuv_color_space:
type: labeled_counter
labels:
- bt601
- bt709
- bt2020
- identity
- unknown
gecko_datapoint: AVIF_YUV_COLOR_SPACE
description: >
YUV color space of AVIF image.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1670827
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1670827#c9
notification_emails:
- media-alerts@mozilla.com
expires: never
bit_depth:
type: labeled_counter
labels:
- color_8
- color_10
- color_12
- color_16
- unknown
gecko_datapoint: AVIF_BIT_DEPTH
description: >
Bits per pixel of AVIF image.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1670827
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1670827#c9
notification_emails:
- media-alerts@mozilla.com
expires: never
alpha:
type: labeled_counter
labels:
- absent
- present
gecko_datapoint: AVIF_ALPHA
description: >
AVIF alpha plane.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5
notification_emails:
- media-alerts@mozilla.com
expires: never
colr:
type: labeled_counter
labels:
- nclx
- icc
- absent
- both
gecko_datapoint: AVIF_COLR
description: >
AVIF colour information type.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045
- https://bugzilla.mozilla.org/show_bug.cgi?id=1729071
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1729071#c15
notification_emails:
- media-alerts@mozilla.com
expires: never
cicp_cp:
type: labeled_counter
labels:
- reserved
- bt709
- unspecified
- reserved_3
- bt470m
- bt470bg
- bt601
- smpte240
- generic_film
- bt2020
- xyz
- smpte431
- smpte432
- reserved_13
- reserved_14
- reserved_15
- reserved_16
- reserved_17
- reserved_18
- reserved_19
- reserved_20
- reserved_21
- ebu3213
- reserved_rest
gecko_datapoint: AVIF_CICP_CP
description: >
AVIF CICP colour primaries.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5
notification_emails:
- media-alerts@mozilla.com
expires: never
cicp_tc:
type: labeled_counter
labels:
- reserved
- bt709
- unspecified
- reserved_3
- bt470m
- bt470bg
- bt601
- smpte240
- linear
- log_100
- log_100_sqrt10
- iec61966
- bt_1361
- srgb
- bt2020_10bit
- bt2020_12bit
- smpte2084
- smpte428
- hlg
- reserved_rest
gecko_datapoint: AVIF_CICP_TC
description: >
AVIF CICP transfer characteristics.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5
notification_emails:
- media-alerts@mozilla.com
expires: never
cicp_mc:
type: labeled_counter
labels:
- identity
- bt709
- unspecified
- reserved
- fcc
- bt470bg
- bt601
- smpte240
- ycgco
- bt2020_ncl
- bt2020_cl
- smpte2085
- chromat_ncl
- chromat_cl
- ictcp
- reserved_rest
gecko_datapoint: AVIF_CICP_MC
description: >
AVIF CICP transfer characteristics.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5
notification_emails:
- media-alerts@mozilla.com
expires: never
ispe:
type: labeled_counter
labels:
- valid
- absent
- bitstream_mismatch
gecko_datapoint: AVIF_ISPE
description: >
AVIF spatial extents (image size).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5
notification_emails:
- media-alerts@mozilla.com
expires: never
pixi:
type: labeled_counter
labels:
- valid
- absent
- bitstream_mismatch
gecko_datapoint: AVIF_PIXI
description: >
AVIF pixel information (bits per channel).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5
notification_emails:
- media-alerts@mozilla.com
expires: never
pasp:
type: labeled_counter
labels:
- absent
- square
- nonsquare
- invalid
gecko_datapoint: AVIF_PASP
description: >
AVIF pixel aspect ratio.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2
notification_emails:
- media-alerts@mozilla.com
expires: never
major_brand:
type: labeled_counter
labels:
- avif
- avis
- other
description: >
AVIF major brand.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2
notification_emails:
- media-alerts@mozilla.com
expires: never
sequence:
type: labeled_counter
labels:
- present
- absent
description: >
AVIF image sequence.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2
notification_emails:
- media-alerts@mozilla.com
expires: never
a1lx:
type: labeled_counter
labels:
- present
- absent
gecko_datapoint: AVIF_A1LX
description: >
AV1LayeredImageIndexingProperty (a1lx).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2
notification_emails:
- media-alerts@mozilla.com
expires: never
a1op:
type: labeled_counter
labels:
- present
- absent
gecko_datapoint: AVIF_A1OP
description: >
AVIF OperatingPointSelectorProperty (a1op).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2
notification_emails:
- media-alerts@mozilla.com
expires: never
clap:
type: labeled_counter
labels:
- present
- absent
gecko_datapoint: AVIF_CLAP
description: >
AVIF CleanApertureBox (clap).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2
notification_emails:
- media-alerts@mozilla.com
expires: never
grid:
type: labeled_counter
labels:
- present
- absent
gecko_datapoint: AVIF_GRID
description: >
AVIF AVIF grid-based image.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2
notification_emails:
- media-alerts@mozilla.com
expires: never
ipro:
type: labeled_counter
labels:
- present
- absent
gecko_datapoint: AVIF_IPRO
description: >
AVIF ItemProtectionBox (ipro).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2
notification_emails:
- media-alerts@mozilla.com
expires: never
lsel:
type: labeled_counter
labels:
- present
- absent
gecko_datapoint: AVIF_LSEL
description: >
AVIF LayerSelectorProperty (lsel).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2
notification_emails:
- media-alerts@mozilla.com
expires: never
network:
cache_hit_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: NETWORK_CACHE_V2_HIT_TIME_MS
description: >
Time to open existing cache entry file.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1489524
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- necko@mozilla.com
expires: never
tls_handshake:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: HTTP_PAGE_TLS_HANDSHAKE
description: >
In the HTTP page channel, time from after the TCP SYN packet is
received to the secure connection is established and ready for HTTP.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=772589
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- necko@mozilla.com
- ddamjanovic@mozilla.com
expires: never
tcp_connection:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: HTTP_PAGE_TCP_CONNECTION_2
description: >
In the HTTP page channel, time from the TCP SYN packet is received to
the connection is established and ready for HTTP.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=772589
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- necko@mozilla.com
- ddamjanovic@mozilla.com
expires: never
dns_start:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: HTTP_PAGE_DNS_ISSUE_TIME
description: >
In the HTTP page channel, time from connection open to the DNS request
being issued.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- necko@mozilla.com
- vogosu@mozilla.com
expires: never
dns_end:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: HTTP_PAGE_DNS_LOOKUP_TIME
description: >
In the HTTP page channel, time from the DNS request being issued to
the response.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- necko@mozilla.com
- vogosu@mozilla.com
expires: never
font_download_end:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: WEBFONT_DOWNLOAD_TIME_AFTER_START
description: >
Time after navigationStart that all webfont downloads are completed.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- perf-telemetry-alerts@mozilla.com
- necko@mozilla.com
- bdekoz@mozilla.com
expires: never
first_from_cache:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: HTTP_PAGE_OPEN_TO_FIRST_FROM_CACHE_V2
description: >
In the HTTP page channel, time from connection open to cache read start.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- necko@mozilla.com
expires: never
performance.pageload:
load_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: PERF_PAGE_LOAD_TIME_MS
description: >
Time in milliseconds from navigationStart to loadEventStart
for the foreground http or https root content document.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
load_time_responsestart:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: PERF_PAGE_LOAD_TIME_FROM_RESPONSESTART_MS
description: >
Time in milliseconds from responseStart to loadEventStart
for the foreground http or https root content document.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
dcl:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: PERF_DOM_CONTENT_LOADED_MS
description: >
Time in milliseconds from navigationStart to domContentLoaded
for the foreground http or https root content document.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
dcl_responsestart:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: PERF_DOM_CONTENT_LOADED_FROM_RESPONSESTART_MS
description: >
Time in milliseconds from responseStart to domContentLoaded
for the foreground http or https root content document.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
fcp:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: PERF_FIRST_CONTENTFUL_PAINT_MS
description: >
The time between navigationStart and the first contentful paint
of a foreground http or https root content document, in
milliseconds. The contentful paint timestamp is taken during
display list building and does not include rasterization or
compositing of that paint.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
fcp_responsestart:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: PERF_FIRST_CONTENTFUL_PAINT_FROM_RESPONSESTART_MS
description: >
The time between responseStart and the first contentful paint
of a foreground http or https root content document, in
milliseconds. The contentful paint timestamp is taken during
display list building and does not include rasterization or
compositing of that paint.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
req_anim_frame_callback:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: PERF_REQUEST_ANIMATION_CALLBACK_PAGELOAD_MS
description: >
Time spent in milliseconds calling all request animation frame callbacks
for a document before it has reached readystate complete.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
performance.responsiveness:
req_anim_frame_callback:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: PERF_REQUEST_ANIMATION_CALLBACK_NON_PAGELOAD_MS
description: >
Time spent in milliseconds calling all request animation frame callbacks
for a document after it has reached readystate complete.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
performance.time:
response_start:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: TIME_TO_RESPONSE_START_MS
description: >
Time from navigationStart to responseStart as per the W3C
Performance Timing API.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1344893
- https://bugzilla.mozilla.org/show_bug.cgi?id=1489524
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- vchin@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
dom_interactive:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: TIME_TO_DOM_INTERACTIVE_MS
description: >
Time from navigationStart to domInteractive as per the W3C
Performance Timing API.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?1344893
- https://bugzilla.mozilla.org/show_bug.cgi?1489524
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- vgosu@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
dom_content_loaded_start:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: TIME_TO_DOM_CONTENT_LOADED_START_MS
description: >
Time from navigationStart to domContentLoadedEventStart as per
the W3C Performance Timing API.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1344893
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- perf-telemetry-alerts@mozilla.com
- bdekoz@mozilla.com
expires: never
dom_content_loaded_end:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: TIME_TO_DOM_CONTENT_LOADED_END_MS
description: >
Time from navigationStart to domContentLoadedEventEnd as per
the W3C Performance Timing API.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1344893
- https://bugzilla.mozilla.org/show_bug.cgi?id=1489524
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- vchin@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
dom_complete:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: TIME_TO_DOM_COMPLETE_MS
description: >
Time from navigationStart to domComplete as per the W3C Performance
Timing API.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1344893
- https://bugzilla.mozilla.org/show_bug.cgi?id=1489524
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- vgosu@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
load_event_start:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: TIME_TO_LOAD_EVENT_START_MS
description: >
Time from navigationStart to loadEventStart as per the W3C Performance
Timing API.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1344893
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- perf-telemetry-alerts@mozilla.com
- bdekoz@mozilla.com
expires: never
load_event_end:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: TIME_TO_LOAD_EVENT_END_MS
description: >
Time from navigationStart to loadEventEnd as per the W3C Performance
Timing API.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1344893
- https://bugzilla.mozilla.org/show_bug.cgi?id=1489524
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- vchin@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
performance.page:
non_blank_paint:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: TIME_TO_NON_BLANK_PAINT_MS
description: >
The time between navigationStart and the first non-blank paint of a
foreground root content document, in milliseconds. This only records
documents that were in an active docshell throughout the whole time
between navigation start and non-blank paint. The non-blank paint
timestamp is taken during display list building and does not include
rasterization or compositing of that paint.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1307242
- https://bugzilla.mozilla.org/show_bug.cgi?id=1489524
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- vchin@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
total_content_page_load:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: TOTAL_CONTENT_PAGE_LOAD_TIME
description: >
Time to load all of a page's resources and render.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- perf-telemetry-alerts@mozilla.com
- bdekoz@mozilla.com
expires: never
performance.interaction:
keypress_present_latency:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: KEYPRESS_PRESENT_LATENCY
description: >
Time between receiving a keypress event in the event loop and compositing
its result onto the screen.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1506537
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- perf-telemetry-alerts@mozilla.com
- vchin@mozilla.com
expires: never
mouseup_click_present_latency:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: MOUSEUP_FOLLOWED_BY_CLICK_PRESENT_LATENCY
description: >
Time between receiving a mouseup which follow by a mouseclick
on the event loop and compositing its result onto the screen.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1698643
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1698643#c3
notification_emails:
- perf-telemetry-alerts@mozilla.com
- sefeng@mozilla.com
expires: never
tab_switch_composite:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: FX_TAB_SWITCH_COMPOSITE_E10S_MS
description: >
Time between tab selection and first composite of the tab content onto the
screen.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1481704
- https://bugzilla.mozilla.org/show_bug.cgi?id=1529352
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
notification_emails:
- mconley@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
javascript.pageload:
execution_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: JS_PAGELOAD_EXECUTION_MS
description: >
Time spent during page load executing Javascript in ms.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
delazification_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: JS_PAGELOAD_DELAZIFICATION_MS
description: >
Time spent during page load delazifying Javascript in ms.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
xdr_encode_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: JS_PAGELOAD_XDR_ENCODING_MS
description: >
Time spent during page load XDR encoding Javascript in ms.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
baseline_compile_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: JS_PAGELOAD_BASELINE_COMPILE_MS
description: >
Time spent during page load baseline compiling Javascript in ms.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
gc_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: JS_PAGELOAD_GC_MS
description: >
Time spent during page load in the GC in ms.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
parse_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: JS_PAGELOAD_PARSE_MS
description: >
Time spent during page load syntax parsing JS scripts on
the main thread in ms.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
protect_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: JS_PAGELOAD_PROTECT_MS
description: >
Time spent during page load protecting JIT executable memory.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4
notification_emails:
- dpalmeiro@mozilla.com
- perf-telemetry-alerts@mozilla.com
expires: never
javascript.gc:
total_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GC_MS
description: >
The total time taken by a major collection.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c8
notification_emails:
- dev-telemetry-gc-alerts@mozilla.org
- jcoppeard@mozilla.com
expires: never
minor_time:
type: timing_distribution
time_unit: microsecond
gecko_datapoint: GC_MINOR_US
description: >
The time taked by a minor (nursery) collection.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17
notification_emails:
- dev-telemetry-gc-alerts@mozilla.org
- jcoppeard@mozilla.com
expires: never
prepare_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GC_PREPARE_MS
description: >
The time spent in the preparation phase.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17
notification_emails:
- dev-telemetry-gc-alerts@mozilla.org
- jcoppeard@mozilla.com
expires: never
mark_roots_time:
type: timing_distribution
time_unit: microsecond
gecko_datapoint: GC_MARK_ROOTS_US
description: >
The time spent marking GC roots.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17
notification_emails:
- dev-telemetry-gc-alerts@mozilla.org
- jcoppeard@mozilla.com
expires: never
mark_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GC_MARK_MS
description: >
The time spent in the mark phase.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17
notification_emails:
- dev-telemetry-gc-alerts@mozilla.org
- jcoppeard@mozilla.com
expires: never
sweep_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GC_SWEEP_MS
description: >
The time spent in the sweep phase.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17
notification_emails:
- dev-telemetry-gc-alerts@mozilla.org
- jcoppeard@mozilla.com
expires: never
compact_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GC_COMPACT_MS
description: >
The time spent in the compact phase.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17
notification_emails:
- dev-telemetry-gc-alerts@mozilla.org
- jcoppeard@mozilla.com
expires: never
slice_time:
type: timing_distribution
time_unit: millisecond
gecko_datapoint: GC_SLICE_MS
description: >
The time spent running a GC slice.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17
notification_emails:
- dev-telemetry-gc-alerts@mozilla.org
- jcoppeard@mozilla.com
expires: never
performance.clone.deserialize:
size:
description: >
Size of deserialized data, in bytes
type: memory_distribution
memory_unit: byte
gecko_datapoint: DESERIALIZE_BYTES
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1717631
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1717631#c4
notification_emails:
- sfink@mozilla.com
expires: never
items:
description: >
Size of deserialized data, in items
type: custom_distribution
unit: Serialized items
histogram_type: exponential
range_max: 2147483646
bucket_count: 50
gecko_datapoint: DESERIALIZE_ITEMS
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1717631
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1717631#c4
notification_emails:
- sfink@mozilla.com
expires: never
time:
description: >
Time spent deserializing structured data
type: timing_distribution
time_unit: microsecond
gecko_datapoint: DESERIALIZE_US
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1717631
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1717631#c4
notification_emails:
- sfink@mozilla.com
expires: never
media.audio:
init_failure:
type: labeled_counter
labels:
- first
- other
gecko_datapoint: MEDIA_AUDIO_INIT_FAILURE
description: >
Failure occurs when initializing the audio stream.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671714
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671714#c10
notification_emails:
- media-alerts@mozilla.com
expires: never
backend:
type: labeled_counter
labels:
- unknown
- audiounit
- audiounit_rust
- aaudio
- opensl
- wasapi
- winmm
- alsa
- jack
- oss
- pulse
- pulse_rust
- sndio
- sun
gecko_datapoint: MEDIA_AUDIO_BACKEND
description: >
The operating system audio backend
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671714
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1671714#c10
notification_emails:
- media-alerts@mozilla.com
expires: never
|