chrome.loadTimes()
は、実際のサイトのパフォーマンスをより的確に把握できるように、読み込み指標とネットワーク情報をデベロッパーに公開するための非標準 API です。
この API は 2009 年に実装されているため、レポートされるすべての有用な情報は、次のような標準化された API にあります。
- ナビゲーションのタイミング 2
- ペイントのタイミング
- Navigation Timing 2 と Resource Timing 2 に
nextHopProtocol
を追加しました。
これらの標準化された API は、複数のブラウザ ベンダーによって実装されています。そのため、chrome.loadTimes()
は Chrome 64 で非推奨になりました。
非推奨の API
chrome.loadTimes()
関数は、読み込みとネットワークに関するすべての情報を含む単一のオブジェクトを返します。たとえば、次のオブジェクトは www.google.com で chrome.loadTimes()
を呼び出した結果です。
{
"requestTime": 1513186741.847,
"startLoadTime": 1513186741.847,
"commitLoadTime": 1513186742.637,
"finishDocumentLoadTime": 1513186742.842,
"finishLoadTime": 1513186743.582,
"firstPaintTime": 1513186742.829,
"firstPaintAfterLoadTime": 0,
"navigationType": "Reload",
"wasFetchedViaSpdy": true,
"wasNpnNegotiated": true,
"npnNegotiatedProtocol": "h2",
"wasAlternateProtocolAvailable": false,
"connectionInfo": "h2"
}
標準化された交換
これで、標準化された API を使用して上記の各値を見つけられるようになりました。次の表に、各値と標準 API の対応を示します。以下のセクションでは、古い API の各値を最新の同等の値を取得するコード例を示します。
chrome.loadTimes() 特徴
| 標準化された API の置き換え |
---|---|
requestTime |
Navigation Timing 2 |
startLoadTime |
Navigation Timing 2 |
commitLoadTime |
Navigation Timing 2 |
finishDocumentLoadTime |
Navigation Timing 2 |
finishLoadTime |
ナビゲーションのタイミング 2 |
firstPaintTime |
塗りつぶしのタイミング |
firstPaintAfterLoadTime |
なし |
navigationType |
Navigation Timing 2 |
wasFetchedViaSpdy |
ナビゲーションのタイミング 2 |
wasNpnNegotiated |
Navigation Timing 2 |
npnNegotiatedProtocol |
ナビゲーションのタイミング 2 |
wasAlternateProtocolAvailable |
なし |
connectionInfo |
Navigation Timing 2 |
次のコードサンプルは、chrome.loadTimes()
から返される値と同等の値を返します。ただし、新しいコードの場合、これらのコードサンプルはおすすめしません。これは、chrome.loadTimes()
が秒単位のエポック時間の値を返すのに対し、新しいパフォーマンス API は通常、ページの時間起点を基準としたミリ秒単位の値を返すためです。これはパフォーマンス分析に有用な傾向があります。
いくつかの例では、Performance Timeline 2 API(performance.getEntriesByType()
など)を優先していますが、古い Navigation Timing 1 API のフォールバックも提供しています。これは、この API がより幅広いブラウザでサポートされているためです。今後は、Performance Timeline API が推奨され、通常はより高い精度でレポートされます。
requestTime
function requestTime() {
// If the browser supports the Navigation Timing 2 and HR Time APIs, use
// them, otherwise fall back to the Navigation Timing 1 API.
if (window.PerformanceNavigationTiming && performance.timeOrigin) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return (ntEntry.startTime + performance.timeOrigin) / 1000;
} else {
return performance.timing.navigationStart / 1000;
}
}
startLoadTime
function startLoadTime() {
// If the browser supports the Navigation Timing 2 and HR Time APIs, use
// them, otherwise fall back to the Navigation Timing 1 API.
if (window.PerformanceNavigationTiming && performance.timeOrigin) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return (ntEntry.startTime + performance.timeOrigin) / 1000;
} else {
return performance.timing.navigationStart / 1000;
}
}
commitLoadTime
function commitLoadTime() {
// If the browser supports the Navigation Timing 2 and HR Time APIs, use
// them, otherwise fall back to the Navigation Timing 1 API.
if (window.PerformanceNavigationTiming && performance.timeOrigin) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return (ntEntry.responseStart + performance.timeOrigin) / 1000;
} else {
return performance.timing.responseStart / 1000;
}
}
finishDocumentLoadTime
function finishDocumentLoadTime() {
// If the browser supports the Navigation Timing 2 and HR Time APIs, use
// them, otherwise fall back to the Navigation Timing 1 API.
if (window.PerformanceNavigationTiming && performance.timeOrigin) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return (ntEntry.domContentLoadedEventEnd + performance.timeOrigin) / 1000;
} else {
return performance.timing.domContentLoadedEventEnd / 1000;
}
}
finishLoadTime
function finishLoadTime() {
// If the browser supports the Navigation Timing 2 and HR Time APIs, use
// them, otherwise fall back to the Navigation Timing 1 API.
if (window.PerformanceNavigationTiming && performance.timeOrigin) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return (ntEntry.loadEventEnd + performance.timeOrigin) / 1000;
} else {
return performance.timing.loadEventEnd / 1000;
}
}
firstPaintTime
function firstPaintTime() {
if (window.PerformancePaintTiming) {
const fpEntry = performance.getEntriesByType('paint')[0];
return (fpEntry.startTime + performance.timeOrigin) / 1000;
}
}
firstPaintAfterLoadTime
function firstPaintTimeAfterLoad() {
// This was never actually implemented and always returns 0.
return 0;
}
navigationType
function navigationType() {
if (window.PerformanceNavigationTiming) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return ntEntry.type;
}
}
wasFetchedViaSpdy
function wasFetchedViaSpdy() {
// SPDY is deprecated in favor of HTTP/2, but this implementation returns
// true for HTTP/2 or HTTP2+QUIC/39 as well.
if (window.PerformanceNavigationTiming) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return ['h2', 'hq'].includes(ntEntry.nextHopProtocol);
}
}
wasNpnNegotiated
function wasNpnNegotiated() {
// NPN is deprecated in favor of ALPN, but this implementation returns true
// for HTTP/2 or HTTP2+QUIC/39 requests negotiated via ALPN.
if (window.PerformanceNavigationTiming) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return ['h2', 'hq'].includes(ntEntry.nextHopProtocol);
}
}
npnNegotiatedProtocol
function npnNegotiatedProtocol() {
// NPN is deprecated in favor of ALPN, but this implementation returns the
// HTTP/2 or HTTP2+QUIC/39 requests negotiated via ALPN.
if (window.PerformanceNavigationTiming) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return ['h2', 'hq'].includes(ntEntry.nextHopProtocol) ?
ntEntry.nextHopProtocol : 'unknown';
}
}
wasAlternateProtocolAvailable
function wasAlternateProtocolAvailable() {
// The Alternate-Protocol header is deprecated in favor of Alt-Svc
// (https://www.mnot.net/blog/2016/03/09/alt-svc), so technically this
// should always return false.
return false;
}
connectionInfo
function connectionInfo() {
if (window.PerformanceNavigationTiming) {
const ntEntry = performance.getEntriesByType('navigation')[0];
return ntEntry.nextHopProtocol;
}
}
削除計画
chrome.loadTimes()
API は Chrome 64 で非推奨になり、2018 年後半に削除される予定です。デベロッパーは、データの損失を回避するために、できるだけ早くコードを移行する必要があります。