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
|
# 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:
- 'Core :: Graphics'
paint:
build_displaylist_time:
type: timing_distribution
description: >
The time to build a Gecko display list.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1728423
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1728423
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- mwoodrow@mozilla.com
expires: never
telemetry_mirror: PAINT_BUILD_DISPLAYLIST_TIME
gpu_process:
feature_status:
type: string
description: >
Current status of the GPU process feature
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1870021
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1870021
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jnicol@mozilla.com
expires: never
crash_fallbacks:
type: labeled_counter
description: >
How often we use different fallbacks when the GPU process crashes
labels:
- none
- decoding_disabled
- disabled
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1870021
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1870021
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jnicol@mozilla.com
expires: never
total_launch_attempts:
type: quantity
description: >
The number of total GPU process launch attempts.
unit: launches
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1870021
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1870021
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jnicol@mozilla.com
expires: never
unstable_launch_attempts:
type: quantity
description: >
The number of consecutive unstable launch attempts.
unit: launches
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1870021
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1870021
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jnicol@mozilla.com
expires: never
wr:
gpu_wait_time:
type: timing_distribution
description: >
The time spent waiting for the GPU to complete previously issued drawing
commands.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1772216
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1772216
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: WR_GPU_WAIT_TIME
rasterize_glyphs_time:
type: timing_distribution
description: >
The time to rasterize glyphs for consumption by WebRender.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1728423
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1728423
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: WR_RASTERIZE_GLYPHS_TIME
rasterize_blobs_time:
type: timing_distribution
description: >
The time to rasterize blobs for consumption by WebRender.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1770974
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1770974
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: WR_RASTERIZE_BLOBS_TIME
renderer_time:
type: timing_distribution
description: >
WebRender renderer time.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1772223
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1772223
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: WR_RENDERER_TIME
renderer_time_no_sc:
type: timing_distribution
description: >
WebRender renderer time excluding frames in which shader compilation took
place.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1784286
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1784286
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: WR_RENDERER_TIME_NO_SC_MS
framebuild_time:
type: timing_distribution
description: >
The time to rasterize glyphs for consumption by WebRender.
time_unit: microsecond
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=1470901
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jmuizelaar@mozilla.com
expires: never
telemetry_mirror: WR_FRAMEBUILD_TIME
scenebuild_time:
type: timing_distribution
description: >
WebRender scene build time.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1470901
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1470901
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jmuizelaar@mozilla.com
expires: never
telemetry_mirror: WR_SCENEBUILD_TIME
sceneswap_time:
type: timing_distribution
description: >
WebRender scene swap time.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1470901
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1470901
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jmuizelaar@mozilla.com
expires: never
telemetry_mirror: WR_SCENESWAP_TIME
texture_cache_update_time:
type: timing_distribution
description: >
Time taken by WebRender to update the texture cache.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1772223
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1772223
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: WR_TEXTURE_CACHE_UPDATE_TIME
time_to_frame_build:
type: timing_distribution
description: >
Time elapsed between the construction of a transaction and the
associated frame build beginning.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1778395
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1778395
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: WR_TIME_TO_FRAME_BUILD_MS
time_to_render_start:
type: timing_distribution
description: >
Time elapsed between the construction of a frame and the start of
rendering.
time_unit: microsecond
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1778395
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1778395
data_sensitivity:
- technical
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
telemetry_mirror: WR_TIME_TO_RENDER_START_MS
gfx:
composite_time:
type: timing_distribution
time_unit: millisecond
telemetry_mirror: 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()`).
(Migrated from the geckoview metric of the same name).
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
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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).
(Migrated from the geckoview metric of the same name).
telemetry_mirror: SCROLL_PRESENT_LATENCY
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1604818
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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.display:
count:
description: >
Amount of displays connected to the device
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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.
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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.
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
gfx.checkerboard:
duration:
type: timing_distribution
time_unit: millisecond
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
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
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
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
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
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
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
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
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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.feature:
webrender:
type: string
description: >
Whether webrender is enabled or disabled, and why.
(Migrated from the geckoview metric of the same name).
lifetime: application
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687312
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687312#c5
notification_emails:
- gfx-telemetry-alerts@mozilla.com
- jnicol@mozilla.com
expires: never
gfx.status:
compositor:
description: >
Name of the graphics compositor in use.
Possible values are "opengl, d3d11, client, webrender or basic"
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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.
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1704842
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
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
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1517355
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
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
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1503405
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1503405
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
description: >
The reason that `gfx.content.frame_time.from_paint` recorded a slow
(>200ms) result, if any.
(Migrated from the geckoview metric of the same name).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1510853
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
gfx.content:
paint_time:
type: timing_distribution
time_unit: millisecond
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
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
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1505858
- https://bugzilla.mozilla.org/show_bug.cgi?id=1584109
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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.adapter.primary:
description:
description: >
Long form description of the Graphics adapter
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
- 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
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
(Migrated from the geckoview metric of the same name).
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
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145
- https://bugzilla.mozilla.org/show_bug.cgi?id=1687219
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4
notification_emails:
- gfx-telemetry-alerts@mozilla.com
expires: never
performance.interaction:
keypress_present_latency:
type: timing_distribution
time_unit: millisecond
telemetry_mirror: KEYPRESS_PRESENT_LATENCY
description: >
Time between receiving a keypress event in the event loop and compositing
its result onto the screen.
(Migrated from the geckoview metric of the same name).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1506537
- https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
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
telemetry_mirror: 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.
(Migrated from the geckoview metric of the same name).
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1698643
- https://bugzilla.mozilla.org/show_bug.cgi?id=1875170
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1698643#c3
notification_emails:
- perf-telemetry-alerts@mozilla.com
- sefeng@mozilla.com
expires: never
|