ボトルネックとなっているリクエストを回避する
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
概要
この監査では、最初の広告リクエストをブロックしている実行時間の長いリクエストを特定します。これらは、開始され、最初の広告リクエストが行われる前にレスポンスも受信したリクエストです。これらのブロック リクエストの数と時間を減らすと、最初の広告リクエストのレイテンシが短縮され、広告の読み込みが速くなります。
推奨事項
この監査の詳細には、ブロックするリクエストの上位 5 件(費用別)が含まれます。ここでの目標は、これらのリクエストを削除するか、その所要時間を短縮して、広告の読み込みを高速化することです。その際のヒントは次のとおりです。
- 不要なリクエストを除外する。
- 重要でないリクエストは、広告が読み込まれるまで延期する。
- リクエストを順次ではなく並行して発行する。
- バックエンド サービスの最適化や HTTP/2 の使用などによる応答時間の改善
この監査では、費用別に上位 5 件のボトルネック リクエストが表示されます。リクエストの費用は次のように計算されます。
request duration + (request self-time * 3)
ここで、リクエストの自己時間は、期間から他のリクエストによってブロックされた時間を差し引いた値に等しくなります。セルフ時間が 250 ミリ秒を超えるリクエストまたは期間が 1 秒を超えるリクエストのみが考慮されます。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-25 UTC。"],[[["\u003cp\u003eThis audit focuses on identifying and mitigating long-running requests that delay the initial ad request, ultimately hindering ad loading speed.\u003c/p\u003e\n"],["\u003cp\u003eBy reducing or removing these "blocking requests," publishers can significantly improve the latency of their first ad request.\u003c/p\u003e\n"],["\u003cp\u003eOptimization strategies include eliminating unnecessary requests, deferring non-critical requests, parallelizing request execution, and enhancing backend service response times.\u003c/p\u003e\n"],["\u003cp\u003eThe audit highlights the top 5 most impactful blocking requests based on a calculated "cost" that factors in request duration and self-time.\u003c/p\u003e\n"],["\u003cp\u003eRequests with self-times exceeding 250ms or durations longer than 1s are flagged for potential optimization to improve ad loading performance.\u003c/p\u003e\n"]]],["The audit identifies long-running requests that delay the first ad request. It highlights the top five blocking requests based on their calculated cost. Actions to reduce delays include eliminating or deferring non-critical requests, issuing requests in parallel, and improving response times. The cost of a request is its duration plus three times its self-time (duration minus blocked time). Only requests with self-time above 250ms or duration above 1s are considered.\n"],null,[]]