Your organization is establishing an automated incident management workflow in Google Cloud to rapidly mitigate unexpected latency spikes in a critical microservice. Place the following operational and technical steps in the correct chronological order from initial detection setup to post-incident validation.
- 1Configure a Cloud Monitoring alerting policy based on microservice latency threshold conditions.
- 2Attach a Google Cloud Pub/Sub topic notification channel to the configured alerting policy.
- 3Execute automated remediation via an event-driven Cloud Run function triggered by incoming Pub/Sub alert messages.
- 4Verify incident resolution and post-remediation service health using Cloud Monitoring dashboards.
Answer
The correct operational sequence is: 1) Configure a Cloud Monitoring alerting policy based on microservice latency threshold conditions, 2) Attach a Google Cloud Pub/Sub topic notification channel to the configured alerting policy, 3) Execute automated remediation via an event-driven Cloud Run function triggered by incoming Pub/Sub alert messages, and 4) Verify incident resolution and post-remediation service health using Cloud Monitoring dashboards.
The workflow follows a standard event-driven incident lifecycle in GCP: first establishing detection thresholds in Cloud Monitoring, next integrating an asynchronous Pub/Sub notification channel, then triggering automated serverless remediation upon incident creation, and finally confirming metric normalization on operational dashboards.
Step-by-Step Solution
Key Concept
Automated Incident Escalation and Event-Driven Remediation