-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
reports.json
1317 lines (1317 loc) · 42 KB
/
reports.json
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
{
"_reports": [
"state-of-the-web",
"state-of-javascript",
"state-of-images",
"loading-speed",
"progressive-web-apps",
"accessibility",
"search-engine-optimization",
"page-weight",
"chrome-ux-report",
"project-fugu",
"cwv-tech",
"cwv-tech-new"
],
"_featured": [
"state-of-the-web"
],
"_lens": {
"drupal": {
"name": "Drupal"
},
"magento": {
"name": "Magento"
},
"wordpress": {
"name": "WordPress"
},
"top1k": {
"name": "Top 1,000"
},
"top10k": {
"name": "Top 10,000"
},
"top100k": {
"name": "Top 100,000"
},
"top1m": {
"name": "Top 1,000,000"
}
},
"_metrics": {
"bootupJs": {
"name": "JavaScript Boot-up Time",
"type": "seconds",
"singular": "second",
"description": "The amount of CPU time each script consumes per page. This metric comes from [Lighthouse](https://web.dev/bootup-time/)."
},
"speedIndex": {
"name": "Speed Index",
"type": "seconds",
"singular": "second",
"description": "How quickly the contents of a page are visibly populated. This metric comes from [WebPageTest](https://github.com/WPO-Foundation/webpagetest-docs/blob/main/src/metrics/SpeedIndex.md) and differs slightly from the [Lighthouse version](https://web.dev/speed-index/) (which was based on this)."
},
"bytesCss": {
"name": "CSS Bytes",
"type": "KB",
"description": "The sum of transfer size kilobytes of all external stylesheets requested by the page. An external stylesheets is identified as a resource with the `css` file extension or a MIME type containing `css`.",
"wpt": {
"path": "median$firstView$breakdown$css$bytes",
"scale": 0.0009765625
}
},
"bytesFont": {
"name": "Font Bytes",
"type": "KB",
"description": "The sum of transfer size kilobytes of all fonts requested by the page. A font is identified as a resource with the `eot`, `ttf`, `woff`, `woff2`, or `otf` file extensions or a MIME type containing `font`.",
"wpt": {
"path": "median$firstView$breakdown$font$bytes",
"scale": 0.0009765625
}
},
"bytesHtml": {
"name": "HTML Bytes",
"type": "KB",
"description": "The sum of transfer size kilobytes of all HTML documents requested by the page. An HTML document is identified as a resource with the `html` or `html` file extensions or a MIME type containing `html`.",
"wpt": {
"path": "median$firstView$breakdown$html$bytes",
"scale": 0.0009765625
}
},
"bytesImg": {
"name": "Image Bytes",
"type": "KB",
"description": "The sum of transfer size kilobytes of all external images requested by the page. An external image is identified as a resource with the `png`, `gif`, `jpg`, `jpeg`, `webp`, `ico`, or `svg` file extensions or a MIME type containing `image`.",
"wpt": {
"path": "median$firstView$breakdown$image$bytes",
"scale": 0.0009765625
}
},
"bytesJs": {
"name": "JavaScript Bytes",
"type": "KB",
"description": "The sum of transfer size kilobytes of all external scripts requested by the page. An external script is identified as a resource with the `js` or `json` file extensions or a MIME type containing `script` or `json`.",
"wpt": {
"path": "median$firstView$breakdown$js$bytes",
"scale": 0.0009765625
}
},
"bytesOther": {
"name": "Other Bytes",
"type": "KB",
"description": "The sum of transfer size kilobytes of all unidentified resources requested by the page. An unidentified resource is one that does not match a known script, font, image, stylesheet, XML file, video, HTML document, or plaintext file.",
"wpt": {
"path": "median$firstView$breakdown$other$bytes",
"scale": 0.0009765625
}
},
"bytesTotal": {
"name": "Total Kilobytes",
"type": "KB",
"description": "The sum of [transfer size](https://www.w3.org/TR/resource-timing-2/#dom-performanceresourcetiming-transfersize) kilobytes of all resources requested by the page.",
"redundant": true,
"wpt": {
"path": "median$firstView$bytesIn",
"scale": 0.0009765625
}
},
"bytesVideo": {
"name": "Video Bytes",
"type": "KB",
"description": "The sum of transfer size kilobytes of all videos requested by the page. A video is identified as a resource with the `mp4`, `swf`, `f4v`, or `flv` file extensions or a MIME type containing `flash`.",
"histogram": {
"minDate": "2015_05_01"
}
},
"canonical": {
"name": "rel=canonical",
"type": "%",
"description": "The percent of pages with a valid canonical link. Canonical pages are detected by [Lighthouse](https://web.dev/canonical/).",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"compileJs": {
"name": "JS Compile Time",
"type": "ms",
"description": "The number of milliseconds spent compiling each JavaScript resource.",
"histogram": {
"minDate": "2017_09_01",
"maxDate": "2018_01_15"
},
"timeseries": {
"enabled": false
}
},
"dcl": {
"name": "DOMContentLoaded",
"type": "seconds",
"singular": "second",
"description": "The number of seconds from the time the navigation started until the initial HTML document has been completely loaded and parsed. See the [DOMContentLoaded event on MDN](https://developer.mozilla.org/en-US/docs/Web/Events/DOMContentLoaded) for more info.",
"histogram": {
"minDate": "2013_08_01"
},
"wpt": {
"path": "median$firstView$domContentLoadedEventStart",
"scale": 0.001
}
},
"evalJs": {
"name": "JS Evaluation Time",
"type": "ms",
"description": "The number of milliseconds spent evaluating each JavaScript resource.",
"histogram": {
"minDate": "2017_09_01"
},
"timeseries": {
"enabled": false
}
},
"fcp": {
"name": "First Contentful Paint",
"type": "seconds",
"singular": "second",
"description": "The number of seconds from the time the navigation started until the page's primary content appears on the screen.",
"histogram": {
"minDate": "2016_12_15"
},
"wpt": {
"path": "median$firstView$firstContentfulPaint",
"scale": 0.001
}
},
"hreflang": {
"name": "hreflang",
"type": "%",
"description": "The percent of pages with a valid `hreflang` attribute, which allows crawlers to discover alternate translations of the page content. Validity is measured by Lighthouse.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"fontDisplay": {
"name": "Font Display",
"type": "%",
"description": "The percent of pages that avoid the flash of invisible text (FOIT) during web font loading by using the `font-display` CSS property. This metric is measured by [Lighthouse](https://web.dev/font-display/).",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"legible": {
"name": "Legible Text",
"type": "%",
"description": "The percent of pages with legible text. Legibility is measured by [Lighthouse](https://web.dev/font-size/).",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"linkText": {
"name": "Descriptive Link Text",
"type": "%",
"description": "The percent of pages with descriptive link text. Descriptiveness is measured by [Lighthouse](https://web.dev/link-text/).",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"ol": {
"name": "onLoad",
"type": "seconds",
"singular": "second",
"description": "The number of seconds from the time the navigation started until the document and all of its dependent resources have finished loading. See the [load event on MDN](https://developer.mozilla.org/en-US/docs/Web/Events/load) for more info.",
"wpt": {
"path": "median$firstView$loadTime",
"scale": 0.001
}
},
"numUrls": {
"name": "Sample Size",
"type": "URLs",
"singular": "URL",
"description": "The number of URLs analyzed in this report.",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"urls"
]
}
},
"pctHttps": {
"name": "HTTPS Requests",
"type": "%",
"description": "The percent of all requests in the crawl whose URLs are prefixed with `https`.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"tcp": {
"name": "TCP Connections Per Page",
"type": "",
"singular": "",
"description": "The number of TCP connections per page.",
"histogram": {
"minDate": "2014_05_15"
},
"wpt": {
"path": "median$firstView$connections"
}
},
"h2": {
"name": "HTTP/2 Requests",
"type": "%",
"description": "The percent of all requests in the crawl using HTTP/2. Note that servers supporting HTTP/2 and HTTP/3 may use HTTP/2 initially due to the way the HTTP Archive starts with a fresh Chrome instance each time, but may use HTTP/3 on subsequent requests.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"h3": {
"name": "HTTP/3 Support",
"type": "%",
"description": "The percent of all requests in the crawl which support HTTP/3. Note that, due to the way the HTTP Archive starts with a fresh Chrome instance each time, HTTP/3 will often not be used for initial connections until the browser is aware the server supports HTTP/3, which is why we measure support, rather than actual usage like we do for HTTP/2.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"ttci": {
"name": "Time to Interactive",
"type": "seconds",
"singular": "second",
"description": "The number of seconds from the time the navigation started until the CPU had at least 5 seconds of quiescence. This metric comes from [Lighthouse](https://web.dev/interactive/). [Read more about First Interactive and First Consistently Interactive](https://docs.google.com/document/d/1GGiI9-7KeY3TPqS3YT271upUVimo-XiL5mwWorDUD4c/edit#heading=h.iqlwzaf6lqrh).",
"histogram": {
"minDate": "2017_06_01"
}
},
"reqCss": {
"name": "CSS Requests",
"type": "Requests",
"singular": "Request",
"description": "The number of external stylesheets requested by the page. An external stylesheets is identified as a resource with the `css` file extension or a MIME type containing `css`.",
"redundant": true,
"wpt": {
"path": "median$firstView$breakdown$css$requests",
"scale": 0.0009765625
}
},
"offscreenImages": {
"name": "Offscreen Image Savings",
"type": "KB",
"description": "The number of kilobytes that could be saved per page by lazy-loading offscreen and hidden images. This metric comes from [Lighthouse](https://web.dev/offscreen-images/)."
},
"optimizedImages": {
"name": "Optimized Image Savings",
"type": "KB",
"description": "The number of kilobytes that could be saved per page by setting JPEG compression levels to 85 or lower. This metric comes from [Lighthouse](https://web.dev/uses-optimized-images/)."
},
"imgLazy": {
"name": "Native Image Lazy Loading",
"type": "%",
"description": "The percent of pages that have the `loading=lazy` attribute on `img` elements.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"reqFont": {
"name": "Font Requests",
"type": "Requests",
"singular": "Request",
"description": "The number of fonts requested by the page. A font is identified as a resource with the `eot`, `ttf`, `woff`, `woff2`, or `otf` file extensions or a MIME type containing `font`.",
"redundant": true,
"wpt": {
"path": "median$firstView$breakdown$font$requests",
"scale": 0.0009765625
}
},
"reqHtml": {
"name": "HTML Requests",
"type": "Requests",
"singular": "Request",
"description": "The number of HTML documents requested by the page. An HTML document is identified as a resource with the `html` or `html` file extensions or a MIME type containing `html`.",
"redundant": true,
"wpt": {
"path": "median$firstView$breakdown$html$requests",
"scale": 0.0009765625
}
},
"reqImg": {
"name": "Image Requests",
"type": "Requests",
"singular": "Request",
"description": "The number of external images requested by the page. An external image is identified as a resource with the `png`, `gif`, `jpg`, `jpeg`, `webp`, `ico`, or `svg` file extensions or a MIME type containing `image`.",
"redundant": true,
"wpt": {
"path": "median$firstView$breakdown$image$requests",
"scale": 0.0009765625
}
},
"reqJs": {
"name": "JavaScript Requests",
"type": "Requests",
"singular": "Request",
"description": "The number of external scripts requested by the page. An external script is identified as a resource with the `js` or `json` file extensions or a MIME type containing `script` or `json`.",
"redundant": true,
"wpt": {
"path": "median$firstView$breakdown$js$requests",
"scale": 0.0009765625
}
},
"reqOther": {
"name": "Other Requests",
"type": "Requests",
"singular": "Request",
"description": "The number of all unidentified resources requested by the page. An unidentified resource is one that does not match a known script, font, image, stylesheet, XML file, video, HTML document, or plaintext file.",
"redundant": true,
"wpt": {
"path": "median$firstView$breakdown$other$requests",
"scale": 0.0009765625
}
},
"reqTotal": {
"name": "Total Requests",
"type": "Requests",
"singular": "Request",
"description": "The number of resources requested by the page.",
"redundant": true,
"wpt": {
"path": "median$firstView$requests$length"
}
},
"reqVideo": {
"name": "Video Requests",
"type": "Requests",
"singular": "Request",
"description": "The number of videos requested by the page. A video is identified as a resource with the `mp4`, `swf`, `f4v`, or `flv` file extensions or a MIME type containing `flash`.",
"redundant": true,
"histogram": {
"minDate": "2015_05_01"
}
},
"cruxFp": {
"name": "First Paint",
"type": "seconds",
"singular": "second",
"description": "The number of seconds from the time the navigation started until the browser first renders. See the [Paint Timing API](https://w3c.github.io/paint-timing/#first-paint) for more info.",
"timeseries": {
"enabled": false
},
"wpt": {
"path": "median$firstView$firstPaint",
"scale": 0.001
}
},
"cruxLcp": {
"name": "Largest Contentful Paint",
"type": "seconds",
"singular": "second",
"description": "The number of seconds from the time the navigation started until the browser first renders the largest image or text block visible within the viewport. See the [LargestContentfulPaint API](https://wicg.github.io/largest-contentful-paint/) for more info.",
"timeseries": {
"enabled": false
},
"wpt": {
"path": "median$firstView$largestContentfulPaint",
"scale": 0.001
}
},
"cruxCls": {
"name": "Cumulative Layout Shift",
"type": "",
"singular": "",
"description": "The layout shift scores for every unexpected layout shift that occurs during the entire lifespan of the page. See the [Cumulative Layout Shift (CLS)](https://web.dev/articles/cls) for more info.",
"timeseries": {
"enabled": false
},
"wpt": {
"path": "median$firstView$cumulativeLayoutshift",
"scale": 1
}
},
"cruxFcp": {
"name": "First Contentful Paint",
"type": "seconds",
"singular": "second",
"description": "The number of seconds from the time the navigation started until the browser first renders. See the [Paint Timing API](https://w3c.github.io/paint-timing/#first-paint) for more info.",
"timeseries": {
"enabled": false
},
"wpt": {
"path": "median$firstView$firstContentfulPaint",
"scale": 0.001
}
},
"cruxDcl": {
"name": "DOMContentLoaded",
"type": "seconds",
"singular": "second",
"description": "The number of seconds from the time the navigation started until the browser first renders any text or graphics.",
"timeseries": {
"enabled": false
},
"wpt": {
"path": "median$firstView$domContentLoadedEventStart",
"scale": 0.001
}
},
"cruxOl": {
"name": "Onload",
"type": "seconds",
"singular": "second",
"description": "The number of seconds from the time the navigation started until the document and all of its dependent resources have finished loading.",
"timeseries": {
"enabled": false
},
"wpt": {
"path": "median$firstView$loadTime",
"scale": 0.001
}
},
"cruxInp": {
"name": "Interaction to Next Paint",
"type": "ms",
"description": "The number of milliseconds from the time the user initiates an interaction to the time the page responds. See [Interaction to Next Paint (INP)](https://web.dev/articles/inp).",
"timeseries": {
"enabled": false
},
"histogram": {
"minDate": "2022_04_01"
}
},
"cruxTtfb": {
"name": "Time to First Byte",
"type": "ms",
"description": "The number of milliseconds from the time the user initiates a navigation until the first bytes are received. See [Time to First Byte (TTFB)](https://web.dev/articles/ttfb).",
"timeseries": {
"enabled": false
},
"histogram": {
"minDate": "2019_07_01"
}
},
"cruxPassesCWV": {
"name": "Passes Core Web Vitals",
"type": "%",
"description": "The percentage of origins passing all three [Core Web Vitals](https://web.dev/articles/vitals#core-web-vitals) (LCP, INP, CLS) with a \"good\" experience. Note that if an origin is missing INP data, it's assessed based on the performance of the remaining metrics. Also note that prior to March 2024, this metric used FID instead of INP.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxFastFcp": {
"name": "Good First Contentful Paint",
"type": "%",
"description": "The percentage of origins with \"good\" FCP experiences, less than or equal to 1.8 seconds.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxFastFp": {
"name": "Good First Paint",
"type": "%",
"description": "The percentage of origins with \"good\" FP experiences, less than or equal to 1 second.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxFastDcl": {
"name": "Good DOM Content Loaded",
"type": "%",
"description": "The percentage of origins with \"good\" DCL experiences, less than or equal to 1 second.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxFastOl": {
"name": "Good Onload",
"type": "%",
"description": "The percentage of origins with \"good\" OL experiences, less than or equal to 1 second.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxFastInp": {
"name": "Good Interaction to Next Paint",
"type": "%",
"description": "The percentage of origins with \"good\" INP experiences, less than or equal to 200 ms. See [Interaction to Next Paint (INP)](https://web.dev/articles/inp).",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxFastLcp": {
"name": "Good Largest Contentful Paint",
"type": "%",
"description": "The percentage of origins with \"good\" LCP experiences, less than or equal to 2.5 seconds.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxFastTtfb": {
"name": "Good Time to First Byte",
"type": "%",
"description": "The percentage of origins with \"good\" TTFB experiences, less than or equal to 800ms. See [Time to First Byte (TTFB)](https://web.dev/articles/ttfb).",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxLargeCls": {
"name": "Poor Cumulative Layout Shift",
"type": "%",
"description": "The percentage of origins with \"poor\" CLS experiences, greater than 0.25.",
"downIsBad": false,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxSlowFcp": {
"name": "Poor First Contentful Paint",
"type": "%",
"description": "The percentage of origins with \"poor\" FCP experiences, greater than 3 seconds.",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxSlowInp": {
"name": "Poor Interaction to Next Paint",
"type": "%",
"description": "The percentage of origins with \"poor\" INP experiences, greater than 500 ms. See [Interaction to Next Paint (INP)](https://web.dev/articles/inp).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxSlowLcp": {
"name": "Poor Largest Contentful Paint",
"type": "%",
"description": "The percentage of origins with \"poor\" LCP experiences, greater than 4.0 seconds.",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxSlowTtfb": {
"name": "Poor Time to First Byte",
"type": "%",
"description": "The percentage of origins with \"poor\" TTFB experiences, greater than 1800ms. See [Time to First Byte (TTFB)](https://web.dev/articles/ttfb).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"cruxSmallCls": {
"name": "Good Cumulative Layout Shift",
"type": "%",
"description": "The percentage of origins with \"good\" CLS experiences, less and or equal to 0.1.",
"downIsBad": true,
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"pwaScores": {
"name": "PWA Scores",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the median [PWA score](https://developers.google.com/web/tools/lighthouse/v3/scoring#pwa) in [Lighthouse](https://developers.google.com/web/tools/lighthouse/). Lighthouse is popular automated tool for improving the quality of web pages.",
"histogram": {
"enabled": false
}
},
"swControlledPages": {
"name": "Service Worker Controlled Pages",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that have triggered the ```ServiceWorkerControlledPage``` [use counter](https://source.chromium.org/chromium/chromium/src/+/master:third_party/blink/public/mojom/web_feature/web_feature.mojom) that fires whenever a page is controlled by a service worker.",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"a11yScores": {
"name": "Accessibility Scores",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the distribution of [Accessibility category scores in Lighthouse](https://web.dev/accessibility-scoring/).",
"histogram": {
"enabled": false
}
},
"a11yButtonName": {
"name": "Button Name",
"type": "%",
"downIsBad": true,
"description": "The percent of pages that pass the [Lighthouse audit](https://web.dev/button-name/) that checks if buttons have an accessible name.",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"a11yColorContrast": {
"name": "Color Contrast",
"type": "%",
"downIsBad": true,
"description": "The percent of pages that pass the [Lighthouse color-contrast audit](https://web.dev/color-contrast/) that checks if pages background and foreground colors do not have a sufficient contrast ratio.",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"a11yImageAlt": {
"name": "Image Alt",
"type": "%",
"downIsBad": true,
"description": "The percent of pages that pass the [Lighthouse image-alt audit](https://web.dev/image-alt/) that checks if all images have alternate text.",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"a11yLabel": {
"name": "Label",
"type": "%",
"downIsBad": true,
"description": "The percent of pages that pass the [Lighthouse label audit](https://web.dev/label/) that checks if all form elements have associated labels.",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"a11yLinkName": {
"name": "Link Name",
"type": "%",
"downIsBad": true,
"description": "The percent of pages that pass the [Lighthouse link-name audit](https://web.dev/link-name/) that checks if all links have discernable text.",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"asyncClipboardRead": {
"name": "Async Clipboard Read",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that *read* data from the system clipboard via the [Async Clipboard API](https://web.dev/image-support-for-async-clipboard/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"badgeSet": {
"name": "Badge Set",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that *set* a badge via the [Badging API](https://web.dev/badging-api/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"badgeClear": {
"name": "Badge Clear",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that *clear* a badge via the [Badging API](https://web.dev/badging-api/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"getInstalledRelatedApps": {
"name": "Get Installed Related Apps",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that get the installed related apps via the [Get Installed Related Apps API](https://web.dev/get-installed-related-apps/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"periodicBackgroundSync": {
"name": "Periodic Background Sync",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that observe a `periodicsync` event that was registered via the [Periodic Background Sync API](https://web.dev/periodic-background-sync/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"periodicBackgroundSyncRegister": {
"name": "Periodic Background Sync Register",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that register a `periodicsync` event via the [Periodic Background Sync API](https://web.dev/periodic-background-sync/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"storageEstimate": {
"name": "Storage Estimation",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that estimate available storage via the [Storage API](https://web.dev/persistent-storage/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"storagePersist": {
"name": "Persistent Storage",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that ask for their data to be stored in persisted storage via the [Storage API](https://web.dev/persistent-storage/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"notificationTriggers": {
"name": "Notification Triggers",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that use scheduled notifications via the [Notification Triggers API](https://web.dev/notification-triggers/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"screenWakeLock": {
"name": "Screen Wake Lock",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that acquire a screen wake lock via the [Screen Wake Lock API](https://web.dev/wakelock/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"contentIndex": {
"name": "Content Indexing",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that add content to the content index via the [Content Indexing API](https://web.dev/content-indexing-api/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [
"percent"
]
}
},
"quicTransport": {
"name": "QuicTransport",
"type": "%",
"downIsBad": true,
"description": "This metric tracks the percentage of pages that add transmit messages via the [QuicTransport API](https://web.dev/quictransport/).",
"histogram": {
"enabled": false
},
"timeseries": {
"fields": [