Performance¶
Use this checklist when the cluster is responding but latency, throttling, or timeout symptoms are growing.
Main Content¶
flowchart TD
A[Performance issue] --> B[Check pod and node usage]
B --> C[Check HPA]
C --> D[Check pending pods]
D --> E[Check recent changes] kubectl top nodes
kubectl top pods -A
kubectl get hpa -A
kubectl get pods -A --field-selector=status.phase=Pending
kubectl get events -A --sort-by=.lastTimestamp