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

slwdgvem  于 2023-05-22  发布在  Kubernetes
关注(0)|答案(2)|浏览(159)

特别地,%CPU/R、%CPU/L、%MEM/R和%MEM/L。既然这样,内存和CPU(非百分比)列的单位是什么?

nzrxty8p

nzrxty8p1#

K9 s发行说明中对此进行了说明

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

yyhrrdl82#

https://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)

他的主旨应该有一颗星星。

相关问题