HttpsLatencyRoutineData

  • This data describes the results of HTTPS latency diagnostics performed by issuing HTTPS requests to Google websites.

  • The data includes a "problem" field indicating any latency issues encountered (e.g., DNS resolution failures, request failures, or high latency) and a "latency" field providing the average request latency time if the routine succeeded or failed due to specific latency thresholds.

  • HttpsLatencyProblem is an enum that defines the different types of HTTPS latency issues that could be encountered, such as unspecified problems, DNS resolution failures, failed HTTPS requests, and high or very high latency.

Data that describes the result of the HTTPS latency diagnostics routine, with the HTTPS requests issued to Google websites.

JSON representation
{
  "problem": enum (HttpsLatencyProblem),
  "latency": string
}
Fields
problem

enum (HttpsLatencyProblem)

Output only. HTTPS latency routine problem if a problem occurred.

latency

string (Duration format)

Output only. HTTPS latency if routine succeeded or failed because of HIGH_LATENCY or VERY_HIGH_LATENCY.

A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".

HttpsLatencyProblem

HTTPS latency problems.

Enums
HTTPS_LATENCY_PROBLEM_UNSPECIFIED HTTPS latency problem not specified.
FAILED_DNS_RESOLUTIONS One or more DNS resolutions resulted in a failure.
FAILED_HTTPS_REQUESTS One or more HTTPS requests resulted in a failure.
HIGH_LATENCY Average HTTPS request latency time between 500ms and 1000ms is high.
VERY_HIGH_LATENCY Average HTTPS request latency time greater than 1000ms is very high.