com um clique
com um clique
Guide for investigating slow PostgreSQL queries
AWS Lambda High Latency Troubleshooting
Database Connection Troubleshooting
Python Application Memory Troubleshooting
Service Connectivity Issues
Use this skill when the user asks to "patch a CVE", "fix a CVE", "handle a CVE", "check a CVE", or discusses Docker image vulnerabilities, docker scout findings, or Go/dependency CVE remediation in the Dockerfile.
| name | application-gateway-troubleshooting |
| description | Troubleshooting Application Gateway Problems |
This runbook helps troubleshoot common Application Gateway issues including 502 Bad Gateway errors.
Use kubectl to check if the Application Gateway pod is running:
kubectl get pods -n <namespace> | grep application-gateway
Review the Application Gateway error logs for any issues:
kubectl logs <application-gateway-pod> -n <namespace> --tail=100 | grep -i error
Check if the upstream services that Application Gateway proxies to are healthy:
kubectl get pods -n <application-gateway-pod> -l app=upstream-service
Verify the Application Gateway configuration is valid:
kubectl exec <application-gateway-pod> -n <namespace> -- appg -t
Ensure the Application Gateway has healthy endpoints:
kubectl get endpoints -n <namespace>
Based on findings: