chrome-devtools-mcp 0.2.6 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -3
- package/build/node_modules/chrome-devtools-frontend/front_end/core/host/GdpClient.js +18 -3
- package/build/node_modules/chrome-devtools-frontend/front_end/core/host/UserMetrics.js +3 -2
- package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/i18n.js +24 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSMatchedStyles.js +5 -1
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/EnhancedTracesParser.js +4 -5
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/NetworkManager.js +1 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/NetworkRequest.js +8 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/TargetManager.js +4 -0
- package/build/node_modules/chrome-devtools-frontend/front_end/generated/InspectorBackendCommands.js +10 -7
- package/build/node_modules/chrome-devtools-frontend/front_end/generated/SupportedCSSProperties.js +40 -11
- package/build/node_modules/chrome-devtools-frontend/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.js +95 -283
- package/build/node_modules/chrome-devtools-frontend/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.js +256 -22
- package/build/node_modules/chrome-devtools-frontend/front_end/models/ai_assistance/performance/AICallTree.js +12 -6
- package/build/node_modules/chrome-devtools-frontend/front_end/models/ai_assistance/performance/AIContext.js +64 -7
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/EventsSerializer.js +3 -3
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/handlers/UserInteractionsHandler.js +91 -63
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/handlers/UserTimingsHandler.js +1 -1
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/helpers/Timing.js +1 -1
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/helpers/Trace.js +98 -36
- package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/types/TraceEvents.js +9 -0
- package/build/src/McpContext.js +8 -2
- package/build/src/McpResponse.js +30 -3
- package/build/src/browser.js +2 -2
- package/build/src/cli.js +82 -0
- package/build/src/formatters/consoleFormatter.js +3 -1
- package/build/src/index.js +6 -198
- package/build/src/main.js +131 -0
- package/build/src/tools/ToolDefinition.js +1 -0
- package/build/src/tools/emulation.js +2 -2
- package/build/src/tools/input.js +8 -8
- package/build/src/tools/network.js +20 -4
- package/build/src/tools/pages.js +12 -2
- package/build/src/tools/performance.js +2 -2
- package/build/src/tools/screenshot.js +1 -1
- package/build/src/tools/script.js +4 -7
- package/build/src/tools/snapshot.js +2 -2
- package/build/src/trace-processing/parse.js +5 -6
- package/build/src/utils/pagination.js +49 -0
- package/package.json +12 -6
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
// found in the LICENSE file.
|
|
4
4
|
import * as Common from '../../../core/common/common.js';
|
|
5
5
|
import * as Trace from '../../trace/trace.js';
|
|
6
|
-
import {
|
|
7
|
-
import { bytes,
|
|
6
|
+
import { PerformanceTraceFormatter } from './PerformanceTraceFormatter.js';
|
|
7
|
+
import { bytes, millis } from './UnitFormatters.js';
|
|
8
8
|
/**
|
|
9
9
|
* For a given frame ID and navigation ID, returns the LCP Event and the LCP Request, if the resource was an image.
|
|
10
10
|
*/
|
|
@@ -27,12 +27,22 @@ function getLCPData(parsedTrace, frameId, navigationId) {
|
|
|
27
27
|
metricScore: metric,
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
|
-
export class PerformanceInsightFormatter {
|
|
30
|
+
export class PerformanceInsightFormatter extends PerformanceTraceFormatter {
|
|
31
31
|
#insight;
|
|
32
32
|
#parsedTrace;
|
|
33
|
-
|
|
33
|
+
/**
|
|
34
|
+
* A utility method because we dependency inject this formatter into
|
|
35
|
+
* PerformanceTraceFormatter; this allows you to pass
|
|
36
|
+
* PerformanceInsightFormatter.create rather than an anonymous
|
|
37
|
+
* function that wraps the constructor.
|
|
38
|
+
*/
|
|
39
|
+
static create(focus, insight) {
|
|
40
|
+
return new PerformanceInsightFormatter(focus, insight);
|
|
41
|
+
}
|
|
42
|
+
constructor(focus, insight) {
|
|
43
|
+
super(focus, null);
|
|
34
44
|
this.#insight = insight;
|
|
35
|
-
this.#parsedTrace = parsedTrace;
|
|
45
|
+
this.#parsedTrace = focus.parsedTrace;
|
|
36
46
|
}
|
|
37
47
|
#formatMilli(x) {
|
|
38
48
|
if (x === undefined) {
|
|
@@ -46,6 +56,23 @@ export class PerformanceInsightFormatter {
|
|
|
46
56
|
}
|
|
47
57
|
return this.#formatMilli(Trace.Helpers.Timing.microToMilli(x));
|
|
48
58
|
}
|
|
59
|
+
#formatRequestUrl(request) {
|
|
60
|
+
const eventKey = this.eventsSerializer.keyForEvent(request);
|
|
61
|
+
return `${request.args.data.url} (eventKey: ${eventKey})`;
|
|
62
|
+
}
|
|
63
|
+
#formatScriptUrl(script) {
|
|
64
|
+
if (script.request) {
|
|
65
|
+
return this.#formatRequestUrl(script.request);
|
|
66
|
+
}
|
|
67
|
+
return script.url ?? script.sourceUrl ?? script.scriptId;
|
|
68
|
+
}
|
|
69
|
+
#formatUrl(url) {
|
|
70
|
+
const request = this.#parsedTrace.data.NetworkRequests.byTime.find(request => request.args.data.url === url);
|
|
71
|
+
if (request) {
|
|
72
|
+
return this.#formatRequestUrl(request);
|
|
73
|
+
}
|
|
74
|
+
return url;
|
|
75
|
+
}
|
|
49
76
|
/**
|
|
50
77
|
* Information about LCP which we pass to the LLM for all insights that relate to LCP.
|
|
51
78
|
*/
|
|
@@ -62,13 +89,15 @@ export class PerformanceInsightFormatter {
|
|
|
62
89
|
return '';
|
|
63
90
|
}
|
|
64
91
|
const { metricScore, lcpRequest, lcpEvent } = data;
|
|
65
|
-
const theLcpElement = lcpEvent.args.data?.nodeName ?
|
|
92
|
+
const theLcpElement = lcpEvent.args.data?.nodeName ?
|
|
93
|
+
`The LCP element (${lcpEvent.args.data.nodeName}, nodeId: ${lcpEvent.args.data.nodeId})` :
|
|
94
|
+
'The LCP element';
|
|
66
95
|
const parts = [
|
|
67
96
|
`The Largest Contentful Paint (LCP) time for this navigation was ${this.#formatMicro(metricScore.timing)}.`,
|
|
68
97
|
];
|
|
69
98
|
if (lcpRequest) {
|
|
70
|
-
parts.push(`${theLcpElement} is an image fetched from
|
|
71
|
-
const request =
|
|
99
|
+
parts.push(`${theLcpElement} is an image fetched from ${this.#formatRequestUrl(lcpRequest)}.`);
|
|
100
|
+
const request = this.formatNetworkRequests([lcpRequest], { verbose: true, customTitle: 'LCP resource network request' });
|
|
72
101
|
parts.push(request);
|
|
73
102
|
}
|
|
74
103
|
else {
|
|
@@ -77,6 +106,12 @@ export class PerformanceInsightFormatter {
|
|
|
77
106
|
return parts.join('\n');
|
|
78
107
|
}
|
|
79
108
|
insightIsSupported() {
|
|
109
|
+
// Although our types don't show it, Insights can end up as Errors if there
|
|
110
|
+
// is an issue in the processing stage. In this case we should gracefully
|
|
111
|
+
// ignore this error.
|
|
112
|
+
if (this.#insight instanceof Error) {
|
|
113
|
+
return false;
|
|
114
|
+
}
|
|
80
115
|
return this.#description().length > 0;
|
|
81
116
|
}
|
|
82
117
|
getSuggestions() {
|
|
@@ -170,13 +205,54 @@ export class PerformanceInsightFormatter {
|
|
|
170
205
|
}
|
|
171
206
|
let output = 'The following resources were associated with ineffficient cache policies:\n';
|
|
172
207
|
for (const entry of insight.requests) {
|
|
173
|
-
output += `\n- ${entry.request
|
|
208
|
+
output += `\n- ${this.#formatRequestUrl(entry.request)}`;
|
|
174
209
|
output += `\n - Cache Time to Live (TTL): ${entry.ttl} seconds`;
|
|
175
210
|
output += `\n - Wasted bytes: ${bytes(entry.wastedBytes)}`;
|
|
176
211
|
}
|
|
177
212
|
output += '\n\n' + Trace.Insights.Models.Cache.UIStrings.description;
|
|
178
213
|
return output;
|
|
179
214
|
}
|
|
215
|
+
#formatLayoutShift(shift, index, rootCauses) {
|
|
216
|
+
const baseTime = this.#parsedTrace.data.Meta.traceBounds.min;
|
|
217
|
+
const potentialRootCauses = [];
|
|
218
|
+
if (rootCauses) {
|
|
219
|
+
rootCauses.iframes.forEach(iframe => potentialRootCauses.push(`- An iframe (id: ${iframe.frame}, url: ${iframe.url ?? 'unknown'} was injected into the page)`));
|
|
220
|
+
rootCauses.webFonts.forEach(req => {
|
|
221
|
+
potentialRootCauses.push(`- A font that was loaded over the network: ${this.#formatRequestUrl(req)}.`);
|
|
222
|
+
});
|
|
223
|
+
rootCauses.nonCompositedAnimations.forEach(nonCompositedFailure => {
|
|
224
|
+
potentialRootCauses.push('- A non-composited animation:');
|
|
225
|
+
const animationInfoOutput = [];
|
|
226
|
+
potentialRootCauses.push(`- non-composited animation: \`${nonCompositedFailure.name || '(unnamed)'}\``);
|
|
227
|
+
if (nonCompositedFailure.name) {
|
|
228
|
+
animationInfoOutput.push(`Animation name: ${nonCompositedFailure.name}`);
|
|
229
|
+
}
|
|
230
|
+
if (nonCompositedFailure.unsupportedProperties) {
|
|
231
|
+
animationInfoOutput.push('Unsupported CSS properties:');
|
|
232
|
+
animationInfoOutput.push('- ' + nonCompositedFailure.unsupportedProperties.join(', '));
|
|
233
|
+
}
|
|
234
|
+
animationInfoOutput.push('Failure reasons:');
|
|
235
|
+
animationInfoOutput.push(' - ' + nonCompositedFailure.failureReasons.join(', '));
|
|
236
|
+
// Extra padding to the detail to not mess up the indentation.
|
|
237
|
+
potentialRootCauses.push(animationInfoOutput.map(l => ' '.repeat(4) + l).join('\n'));
|
|
238
|
+
});
|
|
239
|
+
rootCauses.unsizedImages.forEach(img => {
|
|
240
|
+
// TODO(b/413284569): if we store a nice human readable name for this
|
|
241
|
+
// image in the trace metadata, we can do something much nicer here.
|
|
242
|
+
const url = img.paintImageEvent.args.data.url;
|
|
243
|
+
const nodeName = img.paintImageEvent.args.data.nodeName;
|
|
244
|
+
const extraText = url ? `url: ${this.#formatUrl(url)}` : `id: ${img.backendNodeId}`;
|
|
245
|
+
potentialRootCauses.push(`- An unsized image (${nodeName}) (${extraText}).`);
|
|
246
|
+
});
|
|
247
|
+
}
|
|
248
|
+
const rootCauseText = potentialRootCauses.length ? `- Potential root causes:\n ${potentialRootCauses.join('\n')}` :
|
|
249
|
+
'- No potential root causes identified';
|
|
250
|
+
const startTime = Trace.Helpers.Timing.microToMilli(Trace.Types.Timing.Micro(shift.ts - baseTime));
|
|
251
|
+
return `### Layout shift ${index + 1}:
|
|
252
|
+
- Start time: ${millis(startTime)}
|
|
253
|
+
- Score: ${shift.args.data?.weighted_score_delta.toFixed(4)}
|
|
254
|
+
${rootCauseText}`;
|
|
255
|
+
}
|
|
180
256
|
/**
|
|
181
257
|
* Create an AI prompt string out of the CLS Culprits Insight model to use with Ask AI.
|
|
182
258
|
* @param insight The CLS Culprits Model to query.
|
|
@@ -185,7 +261,7 @@ export class PerformanceInsightFormatter {
|
|
|
185
261
|
formatClsCulpritsInsight(insight) {
|
|
186
262
|
const { worstCluster, shifts } = insight;
|
|
187
263
|
if (!worstCluster) {
|
|
188
|
-
return '';
|
|
264
|
+
return 'No layout shifts were found.';
|
|
189
265
|
}
|
|
190
266
|
const baseTime = this.#parsedTrace.data.Meta.traceBounds.min;
|
|
191
267
|
const clusterTimes = {
|
|
@@ -193,7 +269,7 @@ export class PerformanceInsightFormatter {
|
|
|
193
269
|
end: worstCluster.ts + worstCluster.dur - baseTime,
|
|
194
270
|
};
|
|
195
271
|
const shiftsFormatted = worstCluster.events.map((layoutShift, index) => {
|
|
196
|
-
return
|
|
272
|
+
return this.#formatLayoutShift(layoutShift, index, shifts.get(layoutShift));
|
|
197
273
|
});
|
|
198
274
|
return `The worst layout shift cluster was the cluster that started at ${this.#formatMicro(clusterTimes.start)} and ended at ${this.#formatMicro(clusterTimes.end)}, with a duration of ${this.#formatMicro(worstCluster.dur)}.
|
|
199
275
|
The score for this cluster is ${worstCluster.clusterCumulativeScore.toFixed(4)}.
|
|
@@ -229,7 +305,7 @@ ${shiftsFormatted.join('\n')}`;
|
|
|
229
305
|
});
|
|
230
306
|
return `${this.#lcpMetricSharedContext()}
|
|
231
307
|
|
|
232
|
-
${
|
|
308
|
+
${this.formatNetworkRequests([documentRequest], {
|
|
233
309
|
verbose: true,
|
|
234
310
|
customTitle: 'Document network request'
|
|
235
311
|
})}
|
|
@@ -321,7 +397,7 @@ Duplication grouped by Node modules: ${filesFormatted}`;
|
|
|
321
397
|
const url = new Common.ParsedURL.ParsedURL(font.request.args.data.url);
|
|
322
398
|
fontName = url.isValid ? url.lastPathComponent : '(not available)';
|
|
323
399
|
}
|
|
324
|
-
output += `\n - Font name: ${fontName}, URL: ${font.request
|
|
400
|
+
output += `\n - Font name: ${fontName}, URL: ${this.#formatRequestUrl(font.request)}, Property 'font-display' set to: '${font.display}', Wasted time: ${this.#formatMilli(font.wastedTime)}.`;
|
|
325
401
|
}
|
|
326
402
|
output += '\n\n' + Trace.Insights.Models.FontDisplay.UIStrings.description;
|
|
327
403
|
return output;
|
|
@@ -395,7 +471,7 @@ Duplication grouped by Node modules: ${filesFormatted}`;
|
|
|
395
471
|
return `${message} (Est ${byteSavings})`;
|
|
396
472
|
})
|
|
397
473
|
.join('\n');
|
|
398
|
-
return `### ${image.request
|
|
474
|
+
return `### ${this.#formatRequestUrl(image.request)}
|
|
399
475
|
- Potential savings: ${bytes(image.byteSavings)}
|
|
400
476
|
- Optimizations:\n${optimizations}`;
|
|
401
477
|
})
|
|
@@ -488,7 +564,7 @@ ${checklistBulletPoints.map(point => `- ${point.name}: ${point.passed ? 'PASSED'
|
|
|
488
564
|
return 'There is no significant amount of legacy JavaScript on the page.';
|
|
489
565
|
}
|
|
490
566
|
const filesFormatted = Array.from(legacyJavaScriptResults)
|
|
491
|
-
.map(([script, result]) => `\n- Script: ${script
|
|
567
|
+
.map(([script, result]) => `\n- Script: ${this.#formatScriptUrl(script)} - Wasted bytes: ${result.estimatedByteSavings} bytes
|
|
492
568
|
Matches:
|
|
493
569
|
${result.matches.map(match => `Line: ${match.line}, Column: ${match.column}, Name: ${match.name}`).join('\n')}`)
|
|
494
570
|
.join('\n');
|
|
@@ -504,8 +580,8 @@ ${filesFormatted}`;
|
|
|
504
580
|
*/
|
|
505
581
|
formatModernHttpInsight(insight) {
|
|
506
582
|
const requestSummary = (insight.http1Requests.length === 1) ?
|
|
507
|
-
|
|
508
|
-
|
|
583
|
+
this.formatNetworkRequests(insight.http1Requests, { verbose: true }) :
|
|
584
|
+
this.formatNetworkRequests(insight.http1Requests);
|
|
509
585
|
if (requestSummary.length === 0) {
|
|
510
586
|
return 'There are no requests that were served over a legacy HTTP protocol.';
|
|
511
587
|
}
|
|
@@ -529,7 +605,7 @@ ${requestSummary}`;
|
|
|
529
605
|
output += `Max critical path latency is ${this.#formatMicro(insight.maxTime)}\n\n`;
|
|
530
606
|
output += 'The following is the critical request chain:\n';
|
|
531
607
|
function formatNode(node, indent) {
|
|
532
|
-
const url = node.request
|
|
608
|
+
const url = this.#formatRequestUrl(node.request);
|
|
533
609
|
const time = this.#formatMicro(node.timeFromInitialRequest);
|
|
534
610
|
const isLongest = node.isLongest ? ' (longest chain)' : '';
|
|
535
611
|
let nodeString = `${indent}- ${url} (${time})${isLongest}\n`;
|
|
@@ -589,7 +665,7 @@ ${requestSummary}`;
|
|
|
589
665
|
* @returns a string formatted for sending to Ask AI.
|
|
590
666
|
*/
|
|
591
667
|
formatRenderBlockingInsight(insight) {
|
|
592
|
-
const requestSummary =
|
|
668
|
+
const requestSummary = this.formatNetworkRequests(insight.renderBlockingRequests);
|
|
593
669
|
if (requestSummary.length === 0) {
|
|
594
670
|
return 'There are no network requests that are render blocking.';
|
|
595
671
|
}
|
|
@@ -910,267 +986,3 @@ Polyfills and transforms enable older browsers to use new JavaScript features. H
|
|
|
910
986
|
}
|
|
911
987
|
}
|
|
912
988
|
}
|
|
913
|
-
export class TraceEventFormatter {
|
|
914
|
-
static layoutShift(shift, index, parsedTrace, rootCauses) {
|
|
915
|
-
const baseTime = parsedTrace.data.Meta.traceBounds.min;
|
|
916
|
-
const potentialRootCauses = [];
|
|
917
|
-
if (rootCauses) {
|
|
918
|
-
rootCauses.iframes.forEach(iframe => potentialRootCauses.push(`An iframe (id: ${iframe.frame}, url: ${iframe.url ?? 'unknown'} was injected into the page)`));
|
|
919
|
-
rootCauses.webFonts.forEach(req => {
|
|
920
|
-
potentialRootCauses.push(`A font that was loaded over the network (${req.args.data.url}).`);
|
|
921
|
-
});
|
|
922
|
-
// TODO(b/413285103): use the nice strings for non-composited animations.
|
|
923
|
-
// The code for this lives in TimelineUIUtils but that cannot be used
|
|
924
|
-
// within models. We should move it and then expose the animations info
|
|
925
|
-
// more nicely.
|
|
926
|
-
rootCauses.nonCompositedAnimations.forEach(_ => {
|
|
927
|
-
potentialRootCauses.push('A non composited animation.');
|
|
928
|
-
});
|
|
929
|
-
rootCauses.unsizedImages.forEach(img => {
|
|
930
|
-
// TODO(b/413284569): if we store a nice human readable name for this
|
|
931
|
-
// image in the trace metadata, we can do something much nicer here.
|
|
932
|
-
const url = img.paintImageEvent.args.data.url;
|
|
933
|
-
const nodeName = img.paintImageEvent.args.data.nodeName;
|
|
934
|
-
const extraText = url ? `url: ${url}` : `id: ${img.backendNodeId}`;
|
|
935
|
-
potentialRootCauses.push(`An unsized image (${nodeName}) (${extraText}).`);
|
|
936
|
-
});
|
|
937
|
-
}
|
|
938
|
-
const rootCauseText = potentialRootCauses.length ?
|
|
939
|
-
`- Potential root causes:\n - ${potentialRootCauses.join('\n - ')}` :
|
|
940
|
-
'- No potential root causes identified';
|
|
941
|
-
const startTime = Trace.Helpers.Timing.microToMilli(Trace.Types.Timing.Micro(shift.ts - baseTime));
|
|
942
|
-
return `### Layout shift ${index + 1}:
|
|
943
|
-
- Start time: ${millis(startTime)}
|
|
944
|
-
- Score: ${shift.args.data?.weighted_score_delta.toFixed(4)}
|
|
945
|
-
${rootCauseText}`;
|
|
946
|
-
}
|
|
947
|
-
// Stringify network requests for the LLM model.
|
|
948
|
-
static networkRequests(requests, parsedTrace, options) {
|
|
949
|
-
if (requests.length === 0) {
|
|
950
|
-
return '';
|
|
951
|
-
}
|
|
952
|
-
let verbose;
|
|
953
|
-
if (options?.verbose !== undefined) {
|
|
954
|
-
verbose = options.verbose;
|
|
955
|
-
}
|
|
956
|
-
else {
|
|
957
|
-
verbose = requests.length === 1;
|
|
958
|
-
}
|
|
959
|
-
// Use verbose format for a single network request. With the compressed format, a format description
|
|
960
|
-
// needs to be provided, which is not worth sending if only one network request is being stringified.
|
|
961
|
-
// For a single request, use `formatRequestVerbosely`, which formats with all fields specified and does not require a
|
|
962
|
-
// format description.
|
|
963
|
-
if (verbose) {
|
|
964
|
-
return requests.map(request => this.#networkRequestVerbosely(request, parsedTrace, options?.customTitle))
|
|
965
|
-
.join('\n');
|
|
966
|
-
}
|
|
967
|
-
return this.#networkRequestsArrayCompressed(requests, parsedTrace);
|
|
968
|
-
}
|
|
969
|
-
/**
|
|
970
|
-
* This is the data passed to a network request when the Performance Insights
|
|
971
|
-
* agent is asking for information. It is a slimmed down version of the
|
|
972
|
-
* request's data to avoid using up too much of the context window.
|
|
973
|
-
* IMPORTANT: these set of fields have been reviewed by Chrome Privacy &
|
|
974
|
-
* Security; be careful about adding new data here. If you are in doubt please
|
|
975
|
-
* talk to jacktfranklin@.
|
|
976
|
-
*/
|
|
977
|
-
static #networkRequestVerbosely(request, parsedTrace, customTitle) {
|
|
978
|
-
const { url, statusCode, initialPriority, priority, fromServiceWorker, mimeType, responseHeaders, syntheticData, protocol } = request.args.data;
|
|
979
|
-
const titlePrefix = `## ${customTitle ?? 'Network request'}`;
|
|
980
|
-
// Note: unlike other agents, we do have the ability to include
|
|
981
|
-
// cross-origins, hence why we do not sanitize the URLs here.
|
|
982
|
-
const navigationForEvent = Trace.Helpers.Trace.getNavigationForTraceEvent(request, request.args.data.frame, parsedTrace.data.Meta.navigationsByFrameId);
|
|
983
|
-
const baseTime = navigationForEvent?.ts ?? parsedTrace.data.Meta.traceBounds.min;
|
|
984
|
-
// Gets all the timings for this request, relative to the base time.
|
|
985
|
-
// Note that this is the start time, not total time. E.g. "queuedAt: X"
|
|
986
|
-
// means that the request was queued at Xms, not that it queued for Xms.
|
|
987
|
-
const startTimesForLifecycle = {
|
|
988
|
-
queuedAt: request.ts - baseTime,
|
|
989
|
-
requestSentAt: syntheticData.sendStartTime - baseTime,
|
|
990
|
-
downloadCompletedAt: syntheticData.finishTime - baseTime,
|
|
991
|
-
processingCompletedAt: request.ts + request.dur - baseTime,
|
|
992
|
-
};
|
|
993
|
-
const mainThreadProcessingDuration = startTimesForLifecycle.processingCompletedAt - startTimesForLifecycle.downloadCompletedAt;
|
|
994
|
-
const downloadTime = syntheticData.finishTime - syntheticData.downloadStart;
|
|
995
|
-
const renderBlocking = Trace.Helpers.Network.isSyntheticNetworkRequestEventRenderBlocking(request);
|
|
996
|
-
const initiator = parsedTrace.data.NetworkRequests.eventToInitiator.get(request);
|
|
997
|
-
const priorityLines = [];
|
|
998
|
-
if (initialPriority === priority) {
|
|
999
|
-
priorityLines.push(`Priority: ${priority}`);
|
|
1000
|
-
}
|
|
1001
|
-
else {
|
|
1002
|
-
priorityLines.push(`Initial priority: ${initialPriority}`);
|
|
1003
|
-
priorityLines.push(`Final priority: ${priority}`);
|
|
1004
|
-
}
|
|
1005
|
-
const redirects = request.args.data.redirects.map((redirect, index) => {
|
|
1006
|
-
const startTime = redirect.ts - baseTime;
|
|
1007
|
-
return `#### Redirect ${index + 1}: ${redirect.url}
|
|
1008
|
-
- Start time: ${micros(startTime)}
|
|
1009
|
-
- Duration: ${micros(redirect.dur)}`;
|
|
1010
|
-
});
|
|
1011
|
-
const initiators = this.#getInitiatorChain(parsedTrace, request);
|
|
1012
|
-
const initiatorUrls = initiators.map(initiator => initiator.args.data.url);
|
|
1013
|
-
return `${titlePrefix}: ${url}
|
|
1014
|
-
Timings:
|
|
1015
|
-
- Queued at: ${micros(startTimesForLifecycle.queuedAt)}
|
|
1016
|
-
- Request sent at: ${micros(startTimesForLifecycle.requestSentAt)}
|
|
1017
|
-
- Download complete at: ${micros(startTimesForLifecycle.downloadCompletedAt)}
|
|
1018
|
-
- Main thread processing completed at: ${micros(startTimesForLifecycle.processingCompletedAt)}
|
|
1019
|
-
Durations:
|
|
1020
|
-
- Download time: ${micros(downloadTime)}
|
|
1021
|
-
- Main thread processing time: ${micros(mainThreadProcessingDuration)}
|
|
1022
|
-
- Total duration: ${micros(request.dur)}${initiator ? `\nInitiator: ${initiator.args.data.url}` : ''}
|
|
1023
|
-
Redirects:${redirects.length ? '\n' + redirects.join('\n') : ' no redirects'}
|
|
1024
|
-
Status code: ${statusCode}
|
|
1025
|
-
MIME Type: ${mimeType}
|
|
1026
|
-
Protocol: ${protocol}
|
|
1027
|
-
${priorityLines.join('\n')}
|
|
1028
|
-
Render blocking: ${renderBlocking ? 'Yes' : 'No'}
|
|
1029
|
-
From a service worker: ${fromServiceWorker ? 'Yes' : 'No'}
|
|
1030
|
-
Initiators (root request to the request that directly loaded this one): ${initiatorUrls.join(', ') || 'none'}
|
|
1031
|
-
${NetworkRequestFormatter.formatHeaders('Response headers', responseHeaders ?? [], true)}`;
|
|
1032
|
-
}
|
|
1033
|
-
static #getOrAssignUrlIndex(urlIdToIndex, url) {
|
|
1034
|
-
let index = urlIdToIndex.get(url);
|
|
1035
|
-
if (index !== undefined) {
|
|
1036
|
-
return index;
|
|
1037
|
-
}
|
|
1038
|
-
index = urlIdToIndex.size;
|
|
1039
|
-
urlIdToIndex.set(url, index);
|
|
1040
|
-
return index;
|
|
1041
|
-
}
|
|
1042
|
-
// A compact network requests format designed to save tokens when sending multiple network requests to the model.
|
|
1043
|
-
// It creates a map that maps request URLs to IDs and references the IDs in the compressed format.
|
|
1044
|
-
//
|
|
1045
|
-
// Important: Do not use this method for stringifying a single network request. With this format, a format description
|
|
1046
|
-
// needs to be provided, which is not worth sending if only one network request is being stringified.
|
|
1047
|
-
// For a single request, use `formatRequestVerbosely`, which formats with all fields specified and does not require a
|
|
1048
|
-
// format description.
|
|
1049
|
-
static #networkRequestsArrayCompressed(requests, parsedTrace) {
|
|
1050
|
-
const networkDataString = `
|
|
1051
|
-
Network requests data:
|
|
1052
|
-
|
|
1053
|
-
`;
|
|
1054
|
-
const urlIdToIndex = new Map();
|
|
1055
|
-
const allRequestsText = requests
|
|
1056
|
-
.map(request => {
|
|
1057
|
-
const urlIndex = TraceEventFormatter.#getOrAssignUrlIndex(urlIdToIndex, request.args.data.url);
|
|
1058
|
-
return this.#networkRequestCompressedFormat(urlIndex, request, parsedTrace, urlIdToIndex);
|
|
1059
|
-
})
|
|
1060
|
-
.join('\n');
|
|
1061
|
-
const urlsMapString = 'allUrls = ' +
|
|
1062
|
-
`[${Array.from(urlIdToIndex.entries())
|
|
1063
|
-
.map(([url, index]) => {
|
|
1064
|
-
return `${index}: ${url}`;
|
|
1065
|
-
})
|
|
1066
|
-
.join(', ')}]`;
|
|
1067
|
-
return networkDataString + '\n\n' + urlsMapString + '\n\n' + allRequestsText;
|
|
1068
|
-
}
|
|
1069
|
-
/**
|
|
1070
|
-
* Network requests format description that is sent to the model as a fact.
|
|
1071
|
-
*/
|
|
1072
|
-
static networkDataFormatDescription = `Network requests are formatted like this:
|
|
1073
|
-
\`urlIndex;queuedTime;requestSentTime;downloadCompleteTime;processingCompleteTime;totalDuration;downloadDuration;mainThreadProcessingDuration;statusCode;mimeType;priority;initialPriority;finalPriority;renderBlocking;protocol;fromServiceWorker;initiators;redirects:[[redirectUrlIndex|startTime|duration]];responseHeaders:[header1Value|header2Value|...]\`
|
|
1074
|
-
|
|
1075
|
-
- \`urlIndex\`: Numerical index for the request's URL, referencing the "All URLs" list.
|
|
1076
|
-
Timings (all in milliseconds, relative to navigation start):
|
|
1077
|
-
- \`queuedTime\`: When the request was queued.
|
|
1078
|
-
- \`requestSentTime\`: When the request was sent.
|
|
1079
|
-
- \`downloadCompleteTime\`: When the download completed.
|
|
1080
|
-
- \`processingCompleteTime\`: When main thread processing finished.
|
|
1081
|
-
Durations (all in milliseconds):
|
|
1082
|
-
- \`totalDuration\`: Total time from the request being queued until its main thread processing completed.
|
|
1083
|
-
- \`downloadDuration\`: Time spent actively downloading the resource.
|
|
1084
|
-
- \`mainThreadProcessingDuration\`: Time spent on the main thread after the download completed.
|
|
1085
|
-
- \`statusCode\`: The HTTP status code of the response (e.g., 200, 404).
|
|
1086
|
-
- \`mimeType\`: The MIME type of the resource (e.g., "text/html", "application/javascript").
|
|
1087
|
-
- \`priority\`: The final network request priority (e.g., "VeryHigh", "Low").
|
|
1088
|
-
- \`initialPriority\`: The initial network request priority.
|
|
1089
|
-
- \`finalPriority\`: The final network request priority (redundant if \`priority\` is always final, but kept for clarity if \`initialPriority\` and \`priority\` differ).
|
|
1090
|
-
- \`renderBlocking\`: 't' if the request was render-blocking, 'f' otherwise.
|
|
1091
|
-
- \`protocol\`: The network protocol used (e.g., "h2", "http/1.1").
|
|
1092
|
-
- \`fromServiceWorker\`: 't' if the request was served from a service worker, 'f' otherwise.
|
|
1093
|
-
- \`initiators\`: A list (separated by ,) of URL indices for the initiator chain of this request. Listed in order starting from the root request to the request that directly loaded this one. This represents the network dependencies necessary to load this request. If there is no initiator, this is empty.
|
|
1094
|
-
- \`redirects\`: A comma-separated list of redirects, enclosed in square brackets. Each redirect is formatted as
|
|
1095
|
-
\`[redirectUrlIndex|startTime|duration]\`, where: \`redirectUrlIndex\`: Numerical index for the redirect's URL. \`startTime\`: The start time of the redirect in milliseconds, relative to navigation start. \`duration\`: The duration of the redirect in milliseconds.
|
|
1096
|
-
- \`responseHeaders\`: A list (separated by '|') of values for specific, pre-defined response headers, enclosed in square brackets.
|
|
1097
|
-
The order of headers corresponds to an internal fixed list. If a header is not present, its value will be empty.
|
|
1098
|
-
`;
|
|
1099
|
-
/**
|
|
1100
|
-
*
|
|
1101
|
-
* This is the network request data passed to the Performance agent.
|
|
1102
|
-
*
|
|
1103
|
-
* The `urlIdToIndex` Map is used to map URLs to numerical indices in order to not need to pass whole url every time it's mentioned.
|
|
1104
|
-
* The map content is passed in the response together will all the requests data.
|
|
1105
|
-
*
|
|
1106
|
-
* See `networkDataFormatDescription` above for specifics.
|
|
1107
|
-
*/
|
|
1108
|
-
static #networkRequestCompressedFormat(urlIndex, request, parsedTrace, urlIdToIndex) {
|
|
1109
|
-
const { statusCode, initialPriority, priority, fromServiceWorker, mimeType, responseHeaders, syntheticData, protocol, } = request.args.data;
|
|
1110
|
-
const navigationForEvent = Trace.Helpers.Trace.getNavigationForTraceEvent(request, request.args.data.frame, parsedTrace.data.Meta.navigationsByFrameId);
|
|
1111
|
-
const baseTime = navigationForEvent?.ts ?? parsedTrace.data.Meta.traceBounds.min;
|
|
1112
|
-
const queuedTime = micros(request.ts - baseTime);
|
|
1113
|
-
const requestSentTime = micros(syntheticData.sendStartTime - baseTime);
|
|
1114
|
-
const downloadCompleteTime = micros(syntheticData.finishTime - baseTime);
|
|
1115
|
-
const processingCompleteTime = micros(request.ts + request.dur - baseTime);
|
|
1116
|
-
const totalDuration = micros(request.dur);
|
|
1117
|
-
const downloadDuration = micros(syntheticData.finishTime - syntheticData.downloadStart);
|
|
1118
|
-
const mainThreadProcessingDuration = micros(request.ts + request.dur - syntheticData.finishTime);
|
|
1119
|
-
const renderBlocking = Trace.Helpers.Network.isSyntheticNetworkRequestEventRenderBlocking(request) ? 't' : 'f';
|
|
1120
|
-
const finalPriority = priority;
|
|
1121
|
-
const headerValues = responseHeaders
|
|
1122
|
-
?.map(header => {
|
|
1123
|
-
const value = NetworkRequestFormatter.allowHeader(header.name) ? header.value : '<redacted>';
|
|
1124
|
-
return `${header.name}: ${value}`;
|
|
1125
|
-
})
|
|
1126
|
-
.join('|');
|
|
1127
|
-
const redirects = request.args.data.redirects
|
|
1128
|
-
.map(redirect => {
|
|
1129
|
-
const urlIndex = TraceEventFormatter.#getOrAssignUrlIndex(urlIdToIndex, redirect.url);
|
|
1130
|
-
const redirectStartTime = micros(redirect.ts - baseTime);
|
|
1131
|
-
const redirectDuration = micros(redirect.dur);
|
|
1132
|
-
return `[${urlIndex}|${redirectStartTime}|${redirectDuration}]`;
|
|
1133
|
-
})
|
|
1134
|
-
.join(',');
|
|
1135
|
-
const initiators = this.#getInitiatorChain(parsedTrace, request);
|
|
1136
|
-
const initiatorUrlIndices = initiators.map(initiator => TraceEventFormatter.#getOrAssignUrlIndex(urlIdToIndex, initiator.args.data.url));
|
|
1137
|
-
const parts = [
|
|
1138
|
-
urlIndex,
|
|
1139
|
-
queuedTime,
|
|
1140
|
-
requestSentTime,
|
|
1141
|
-
downloadCompleteTime,
|
|
1142
|
-
processingCompleteTime,
|
|
1143
|
-
totalDuration,
|
|
1144
|
-
downloadDuration,
|
|
1145
|
-
mainThreadProcessingDuration,
|
|
1146
|
-
statusCode,
|
|
1147
|
-
mimeType,
|
|
1148
|
-
priority,
|
|
1149
|
-
initialPriority,
|
|
1150
|
-
finalPriority,
|
|
1151
|
-
renderBlocking,
|
|
1152
|
-
protocol,
|
|
1153
|
-
fromServiceWorker ? 't' : 'f',
|
|
1154
|
-
initiatorUrlIndices.join(','),
|
|
1155
|
-
`[${redirects}]`,
|
|
1156
|
-
`[${headerValues ?? ''}]`,
|
|
1157
|
-
];
|
|
1158
|
-
return parts.join(';');
|
|
1159
|
-
}
|
|
1160
|
-
static #getInitiatorChain(parsedTrace, request) {
|
|
1161
|
-
const initiators = [];
|
|
1162
|
-
let cur = request;
|
|
1163
|
-
while (cur) {
|
|
1164
|
-
const initiator = parsedTrace.data.NetworkRequests.eventToInitiator.get(cur);
|
|
1165
|
-
if (initiator) {
|
|
1166
|
-
// Should never happen, but if it did that would be an infinite loop.
|
|
1167
|
-
if (initiators.includes(initiator)) {
|
|
1168
|
-
return [];
|
|
1169
|
-
}
|
|
1170
|
-
initiators.unshift(initiator);
|
|
1171
|
-
}
|
|
1172
|
-
cur = initiator;
|
|
1173
|
-
}
|
|
1174
|
-
return initiators;
|
|
1175
|
-
}
|
|
1176
|
-
}
|