Skip to content

Instantly share code, notes, and snippets.

@BigNerd
Last active May 1, 2024 03:56
Show Gist options
  • Star 47 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save BigNerd/35a56e411df4c90f7d6dee1d33dbd0a5 to your computer and use it in GitHub Desktop.
Save BigNerd/35a56e411df4c90f7d6dee1d33dbd0a5 to your computer and use it in GitHub Desktop.
K9s column descriptions
View: Pods(<namespace>)[number of pods listed]
NAME pod name
READY number of pods in ready state / number of pods to be in ready state
RESTARTS number of times the pod has been restarted so far
STATUS state of the pod life cycle, such as Running | ... | Completed
CPU current CPU usage, unit is milli-vCPU
MEM current main memory usage, unit is MiB
%CPU/R current CPU usage as a percentage of what has been requested by the pod
%MEM/R current main memory usage as a percentage of what has been requested by the pod
%CPU/L current CPU usage as a percentage of the pod's limit (it cannot go beyond its limit)
%MEM/L current main memory usage as a percentage of the pod's limit (it cannot go beyond its limit)
IP IP address of the pod
NODE name of the node the pod is running on
AGE age of the pod, units are indicated (s = seconds, m = minutes, h = hours, d = days)
@joadr
Copy link

joadr commented Mar 22, 2023

What about CPU/A and MEM/A when you see the nodes?

@Arcovv
Copy link

Arcovv commented May 18, 2023

What about CPU/A and MEM/A when you see the nodes?

@joadr
CPU/A is about the CPU allocatable (unit is milli-vCPU)
MEM/A is the memory allocatable (unit is MiB)

@mihaisoloi
Copy link

if you're asking yourself like me, what a milli-vCPU is 1/1000 of
(Threads x Cores) x Physical CPU = Number vCPU

@qmaxquique
Copy link

Hello,
Can you please elaborate on how you calculate this value? Thanks!

MEM current main memory usage, unit is MiB

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment