Medium1 markMultiple Choice
GCP PCA · Question 30 · Domain 4: Analyzing and Optimizing Technical and Business Processes
You are defining the Service Level Indicator (SLI) for a user-facing web application. According to Google's Site Reliability Engineering (SRE) practices, which metric is the most appropriate SLI for a synchronous request-response service?
You are defining the Service Level Indicator (SLI) for a user-facing web application. According to Google's Site Reliability Engineering (SRE) practices, which metric is the most appropriate SLI for a synchronous request-response service?
Answer options:
A.
The average CPU utilization of the web servers over a 5-minute window.
B.
The total number of database queries executed per second.
C.
The proportion of HTTP requests that return a 200 OK status code within 200 milliseconds.
D.
The amount of time it takes to deploy a new version of the application.
How to approach this question
An SLI must measure the user's perspective. Users care about speed and success, not CPU or database metrics.
Full Answer
C.The proportion of HTTP requests that return a 200 OK status code within 200 milliseconds.✓ Correct
In SRE, a Service Level Indicator (SLI) is a carefully defined quantitative measure of some aspect of the level of service that is provided. For user-facing systems, SLIs typically measure Availability (yield) and Latency. Option C correctly combines both into a measurable proportion (e.g., 99% of requests were successful and fast).
Common mistakes
Choosing CPU utilization (A). High CPU doesn't necessarily mean the user is experiencing an error.
Practice the full GCP Professional Cloud Architect Practice Exam 4
50 questions · hints · full answers · grading
More questions from this exam
Q01CASE STUDY: TechStream Gaming
Overview: 500 employees, $100M revenue. On-prem US/EU, 200 servers...MediumQ02CASE STUDY: TechStream Gaming
Overview: 500 employees, $100M revenue. On-prem US/EU, 200 servers...MediumQ03CASE STUDY: TechStream Gaming
Overview: 500 employees, $100M revenue. On-prem US/EU, 200 servers...HardQ04CASE STUDY: TechStream Gaming
Overview: 500 employees, $100M revenue. On-prem US/EU, 200 servers...HardQ05CASE STUDY: TechStream Gaming
Overview: 500 employees, $100M revenue. On-prem US/EU, 200 servers...Easy
Expert