forked from GoogleChrome/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetwork-server-latency.js
80 lines (68 loc) · 3.53 KB
/
network-server-latency.js
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
/**
* @license Copyright 2019 The Lighthouse Authors. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*/
'use strict';
const Audit = require('./audit.js');
const i18n = require('../lib/i18n/i18n.js');
const NetworkAnalysisComputed = require('../computed/network-analysis.js');
const UIStrings = {
/** Descriptive title of a Lighthouse audit that tells the user the server latencies observed from each origin the page connected to. This is displayed in a list of audit titles that Lighthouse generates. */
title: 'Server Backend Latencies',
/** Description of a Lighthouse audit that tells the user that server latency can effect their website's performance negatively. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */
description: 'Server latencies can impact web performance. ' +
'If the server latency of an origin is high, it\'s an indication the server is overloaded ' +
'or has poor backend performance. [Learn more](https://hpbn.co/primer-on-web-performance/#analyzing-the-resource-waterfall).',
};
const str_ = i18n.createMessageInstanceIdFn(__filename, UIStrings);
class NetworkServerLatency extends Audit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return {
id: 'network-server-latency',
scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE,
title: str_(UIStrings.title),
description: str_(UIStrings.description),
requiredArtifacts: ['devtoolsLogs'],
};
}
/**
* @param {LH.Artifacts} artifacts
* @param {LH.Audit.Context} context
* @return {Promise<LH.Audit.Product>}
*/
static async audit(artifacts, context) {
const devtoolsLog = artifacts.devtoolsLogs[Audit.DEFAULT_PASS];
const analysis = await NetworkAnalysisComputed.request(devtoolsLog, context);
/** @type {number} */
let maxLatency = 0;
/** @type {Array<{origin: string, serverResponseTime: number}>} */
const results = [];
for (const [origin, serverResponseTime] of analysis.serverResponseTimeByOrigin.entries()) {
// Ignore entries that don't look like real origins, like the __SUMMARY__ entry.
if (!origin.startsWith('http')) continue;
maxLatency = Math.max(serverResponseTime, maxLatency);
results.push({origin, serverResponseTime});
}
results.sort((a, b) => b.serverResponseTime - a.serverResponseTime);
/** @type {LH.Audit.Details.Table['headings']} */
const headings = [
{key: 'origin', itemType: 'text', text: str_(i18n.UIStrings.columnURL)},
{key: 'serverResponseTime', itemType: 'ms', granularity: 1,
text: str_(i18n.UIStrings.columnTimeSpent)},
];
const tableDetails = Audit.makeTableDetails(headings, results);
return {
score: Math.max(1 - (maxLatency / 500), 0),
numericValue: maxLatency,
numericUnit: 'millisecond',
displayValue: str_(i18n.UIStrings.ms, {timeInMs: maxLatency}),
details: tableDetails,
};
}
}
module.exports = NetworkServerLatency;
module.exports.UIStrings = UIStrings;