Incident Runbook Generator Create actionable runbooks for common incidents. Runbook Template bash # Check current connections SELECT count( ) FROM pg stat activity; ` 2. Identify long-running queries 3. Kill blocking queries (if safe) Mitigation (10 min) 1. Scale up connection pool (temporary) 2. Restart application (if needed) 3. Monitor recovery Root Cause Investigation Check for: - [ ] Recent deployment (new code with connection leaks) - [ ] Traffic spike (legitimate or DDoS) - [ ] Slow queries holding connections - [ ] Connection pool configuration too small - [ ] Application not releasin…