You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: ordering of information in performance trace summary (#334)
Fixes a bug where the output contained "this is a high level summary"
before then outputting the call frame / network format information
before then outputting the trace summary.
With this commit, we now output the summary & insights before ending
with the format information.
Metrics (field / real users): n/a – no data for this page in CrUX
67
+
Available insights:
68
+
- insight name: LCPBreakdown
69
+
description: Each [subpart has specific improvement strategies](https://web.dev/articles/optimize-lcp#lcp-breakdown). Ideally, most of the LCP time should be spent on loading the resources, not within delays.
example question: Which LCP phase was most problematic?
73
+
example question: What can I do to reduce the LCP time for this page load?
74
+
- insight name: LCPDiscovery
75
+
description: Optimize LCP by making the LCP image [discoverable](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) from the HTML immediately, and [avoiding lazy-loading](https://web.dev/articles/lcp-lazy-loading)
example question: What can I do to reduce my LCP discovery time?
79
+
example question: Why is LCP discovery time important?
80
+
- insight name: RenderBlocking
81
+
description: Requests are blocking the page's initial render, which may delay LCP. [Deferring or inlining](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources) can move these network requests out of the critical path.
example question: Show me the most impactful render blocking requests that I should focus on
84
+
example question: How can I reduce the number of render blocking requests?
85
+
- insight name: DocumentLatency
86
+
description: Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
example question: How do I decrease the initial loading time of my page?
91
+
example question: Did anything slow down the request for this document?
92
+
- insight name: ThirdParties
93
+
description: 3rd party code can significantly impact load performance. [Reduce and defer loading of 3rd party code](https://web.dev/articles/optimizing-content-efficiency-loading-third-party-javascript/) to prioritize your page's content.
Metrics (field / real users): n/a – no data for this page in CrUX
123
-
Available insights:
124
-
- insight name: LCPBreakdown
125
-
description: Each [subpart has specific improvement strategies](https://web.dev/articles/optimize-lcp#lcp-breakdown). Ideally, most of the LCP time should be spent on loading the resources, not within delays.
example question: Which LCP phase was most problematic?
129
-
example question: What can I do to reduce the LCP time for this page load?
130
-
- insight name: LCPDiscovery
131
-
description: Optimize LCP by making the LCP image [discoverable](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) from the HTML immediately, and [avoiding lazy-loading](https://web.dev/articles/lcp-lazy-loading)
example question: What can I do to reduce my LCP discovery time?
135
-
example question: Why is LCP discovery time important?
136
-
- insight name: RenderBlocking
137
-
description: Requests are blocking the page's initial render, which may delay LCP. [Deferring or inlining](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources) can move these network requests out of the critical path.
example question: Show me the most impactful render blocking requests that I should focus on
140
-
example question: How can I reduce the number of render blocking requests?
141
-
- insight name: DocumentLatency
142
-
description: Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
example question: How do I decrease the initial loading time of my page?
147
-
example question: Did anything slow down the request for this document?
148
-
- insight name: ThirdParties
149
-
description: 3rd party code can significantly impact load performance. [Reduce and defer loading of 3rd party code](https://web.dev/articles/optimizing-content-efficiency-loading-third-party-javascript/) to prioritize your page's content.
Metrics (field / real users): n/a – no data for this page in CrUX
16
+
Available insights:
17
+
- insight name: LCPBreakdown
18
+
description: Each [subpart has specific improvement strategies](https://web.dev/articles/optimize-lcp#lcp-breakdown). Ideally, most of the LCP time should be spent on loading the resources, not within delays.
example question: Which LCP phase was most problematic?
22
+
example question: What can I do to reduce the LCP time for this page load?
23
+
- insight name: LCPDiscovery
24
+
description: Optimize LCP by making the LCP image [discoverable](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) from the HTML immediately, and [avoiding lazy-loading](https://web.dev/articles/lcp-lazy-loading)
example question: What can I do to reduce my LCP discovery time?
28
+
example question: Why is LCP discovery time important?
29
+
- insight name: RenderBlocking
30
+
description: Requests are blocking the page's initial render, which may delay LCP. [Deferring or inlining](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources) can move these network requests out of the critical path.
example question: Show me the most impactful render blocking requests that I should focus on
33
+
example question: How can I reduce the number of render blocking requests?
34
+
- insight name: DocumentLatency
35
+
description: Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
example question: How do I decrease the initial loading time of my page?
40
+
example question: Did anything slow down the request for this document?
41
+
- insight name: ThirdParties
42
+
description: 3rd party code can significantly impact load performance. [Reduce and defer loading of 3rd party code](https://web.dev/articles/optimizing-content-efficiency-loading-third-party-javascript/) to prioritize your page's content.
Metrics (field / real users): n/a – no data for this page in CrUX
71
-
Available insights:
72
-
- insight name: LCPBreakdown
73
-
description: Each [subpart has specific improvement strategies](https://web.dev/articles/optimize-lcp#lcp-breakdown). Ideally, most of the LCP time should be spent on loading the resources, not within delays.
example question: Which LCP phase was most problematic?
77
-
example question: What can I do to reduce the LCP time for this page load?
78
-
- insight name: LCPDiscovery
79
-
description: Optimize LCP by making the LCP image [discoverable](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) from the HTML immediately, and [avoiding lazy-loading](https://web.dev/articles/lcp-lazy-loading)
example question: What can I do to reduce my LCP discovery time?
83
-
example question: Why is LCP discovery time important?
84
-
- insight name: RenderBlocking
85
-
description: Requests are blocking the page's initial render, which may delay LCP. [Deferring or inlining](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources) can move these network requests out of the critical path.
example question: Show me the most impactful render blocking requests that I should focus on
88
-
example question: How can I reduce the number of render blocking requests?
89
-
- insight name: DocumentLatency
90
-
description: Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
example question: How do I decrease the initial loading time of my page?
95
-
example question: Did anything slow down the request for this document?
96
-
- insight name: ThirdParties
97
-
description: 3rd party code can significantly impact load performance. [Reduce and defer loading of 3rd party code](https://web.dev/articles/optimizing-content-efficiency-loading-third-party-javascript/) to prioritize your page's content.
0 commit comments