Applicare provides agent less K8S monitoring for Kubernetes running locally or in cloud (EKS). Configuration is super simple and you start getting valuable data in minutes.
Go to the Kubernetes menu in the left side menu, click the Cluster IP to view the details.
Kubernetes Cluster Details
CPU Used - Total CPU utilization of all the nodes in the cluster (milicores)
Memory Used - Total memory utilization of all the nodes in the cluster (mebibytes)
Capacity - It indicate the total amount of resources that a Node has.
- CPU Capacity Used % - Percentage of CPU utilized from its capacity value.
- Memory Capacity Used % - Percentage of memory utilized from its capacity value.
Allocatable - It indicates the amount of resources on a Node that is available to be consumed by normal Pods.
- CPU Allocatable Used % - Percentage of CPU utilized from its allocatable value.
- Memory Allocatable Used % - Percentage of memory utilized from its allocatable value.
Click the Nodes, Namespaces, Pods and Services to view the details.
Nodes
Click the Name column to view the node details.
-
CPU Used - Total CPU utilization for individual node in the cluster.
-
Memory Used - Total memory utilization for individual node in the cluster.
Namespaces
Click the Name column to view the namespace details.
Pods
Click the Name column to view the pod details.
CPU Used - Total CPU utilization of all the containers in the pods (milicores).
Memory Used - Total memory utilization of all the containers in the pods (mebibytes).
CPULimit - It defines a hard ceiling on how much CPU time that the container can use. During each scheduling interval (time slice), the Linux kernel checks to see if this limit is exceeded; if so, the kernel waits before allowing that cgroup to resume execution.
Memory Limit - It defines a memory limit for that cgroup. If the container tries to allocate more memory than this limit, the Linux kernel out-of-memory subsystem activates and, typically, intervenes by stopping one of the processes in the container that tried to allocate memory. If that process is the container's PID 1, and the container is marked as restartable, Kubernetes restarts the container.
CPU request - It typically defines a weighting. If several different containers (cgroups) want to run on a contended system, workloads with larger CPU requests are allocated more CPU time than workloads with small requests.
Memory request - is mainly used during (Kubernetes) Pod scheduling.
CPU Limit Used % - Percentage of CPU utilized from its cpu limit.
Memory Limit Used % - Percentage of memory utilized from its memory limit.
CPU Request Used % - Percentage of CPU utilized from its cpu request.
Memory Request Used % - Percentage of memory utilized from its memory request.
Click the Name column to view the container details.
-
CPU Used - Total CPU utilization for individual container in the pod.
-
Memory Used - Total memory utilization for individual container in the pod.
Services
Click the Name column to view the service details.
Comments
0 comments
Article is closed for comments.