Monitoring Best Practices

During deployment, monitor these key indicators:

shell
# Check overall cluster status
kubectl get nodes

# Monitor LogScale pod deployment
kubectl get pods -n log -w

# Verify ingress and load balancer
kubectl get ingress -n log
kubectl get svc -n log-ingress

# Check for any pending pods
kubectl get pods --all-namespaces | grep -E "(Pending|Init|Error)"