Differences between revisions 8 and 10 (spanning 2 versions)
Revision 8 as of 2019-10-07 03:07:55
Size: 1066
Editor: PieterSmit
Comment: used consistent lowercase for k8s
Revision 10 as of 2019-11-03 21:53:03
Size: 1236
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 31: Line 31:
# CPU for singel pod
kubectl top pod pd-691234f8-rabcw
Line 39: Line 42:
# k8s cluster auto scaler {{{
kubectl -n kube-system describe configmap cluster-autoscaler-status

}}}

Kubernetes K8s/Monitoring

  • Actual cpu usage, not requested

    $ kubectl get --raw /apis/metrics.k8s.io/v1beta1/pods
  • Events happening in cluser

    kubectl -n kube-system get events --sort-by='{.lastTimestamp}'
    
    kubectl -n kube-system get events -w
    
    kubectl get events --field-selector type=Warning -w &
    
    kubectl get pods -A -w -o wide | grep "^\|Running\|Terminating" &
  • Node cpu and memory utilization

    alias util='kubectl get nodes | grep node | awk '\''{print $1}'\'' | xargs -I {} sh -c '\''echo   {} ; kubectl describe node {} | grep Allocated -A 5 | grep -ve Event -ve Allocated -ve percent -ve -- ; echo '\'''
  • Watch node events (& puts it in background on terminal)

    kubectl get pods -A -o wide &
  • Get cpu metrics

    # CPU for singel pod
    kubectl top pod pd-691234f8-rabcw
    
    # Get the metrics for all nodes
    kubectl get --raw /apis/metrics.k8s.io/v1beta1/nodes | jq
    
    # Get the metrics for all pods
    kubectl get --raw /apis/metrics.k8s.io/v1beta1/pods | jq

# k8s cluster auto scaler

kubectl -n kube-system describe configmap cluster-autoscaler-status


CategoryK8sKubernetes

k8s/Monitoring (last edited 2022-10-21 00:19:58 by PieterSmit)