An enterprise financial organization runs a mission-critical payment processing application on a Google Cloud Managed Instance Group (MIG) behind an External HTTP(S) Load Balancer. The SRE team faces two main operational challenges: first, frequent transient traffic bursts trigger alert storms that cause on-call engineer fatigue while failing to highlight sustained slow-burn reliability budget exhaustion; second, when specific corrupt payloads cause backend compute instances to fail, manual incident response causes elevated Mean Time to Resolution (MTTR).
The Site Reliability Engineering team needs an automated alerting and incident management pipeline that:
1. Accurately detects rapidly accelerating and slow-burn degradation of the request latency Service Level Objective (SLO) while preventing alert fatigue during temporary bursts.
2. Automatically isolates compromised VM instances for offline forensic analysis and replaces capacity without worsening backend load or risking cascading failure through deep load balancer health probes.
Which operational architecture should you recommend?
- Configure Cloud Monitoring Service Monitoring using multi-window, multi-burn-rate alert policies on latency SLIs. Route alerts through Pub/Sub to an automated Cloud Function that detaches failing instances from the MIG for forensic analysis, and maintain lightweight HTTP load balancer health check endpoints focused solely on local node health.Cevap
- BConfigure static threshold Cloud Monitoring alert policies set to trigger when CPU utilization exceeds 85% or HTTP 5xx error rate exceeds 2% over a 5-minute window. Point the notification channel to a Webhook that executes a Cloud Function to automatically restart impacted Compute Engine instances.
- CConfigure Load Balancer health checks to execute complex end-to-end database query checks on every backend endpoint. When health checks fail, configure a Cloud Logging log-based metric alert to publish an alert event directly to PagerDuty for manual operator triage.
- DConfigure alert policies directly monitoring the static SLO target percentage (99.9%) as an instantaneous metric value. Attach a Pub/Sub notification channel executing a Cloud Function that operates using primitive Project Owner IAM roles to destroy and recreate the target VPC network.