所有k9标题的含义是什么?-有些是显而易见的,有些则不那么明显



特别是%CPU/R、%CPU/L、%MEM/R和%MEM/L。当我在做的时候,内存和CPU(非百分比(列的单位是多少?

它们在这里的K9s发行说明中进行了解释

  • %CPU/R请求的CPU百分比
  • %MEM/R请求内存的百分比
  • %CPU/L有限CPU的百分比
  • %MEM/L有限内存的百分比

Inhttps://gist.github.com/BigNerd/35a56e411df4c90f7d6dee1d33dbd0a5在这里,作者做了更多的解释。我把他的内容复制到这里:

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)

他的要点应该有一颗星。

最新更新