我找不到 Node Exporter CPU 指标的所有 CPU 处理模式的明确解释
当我们使用 Node Exporter 的 node_cpu_seconds_total 指标时,如所附的第一张图片所示,Prometheus 会返回我们所知的所有 8 种进程模式的总 CPU 使用秒数。
带有node_cpu_seconds_total指标的节点导出器CPU模式
我进行了大量搜索以了解这些模式代表什么我几乎在一篇文章中找到了所有这些,但是“很好”模式。有谁知道这个“nice”模式代表什么?
When we use node_cpu_seconds_total metric of Node Exporter, as seen on attached first image, Prometheus returns us total CPU usage seconds for all 8 process modes as we know.
Node Exporter CPU modes coming with node_cpu_seconds_total metric
I made lots of search to understand what those modes stand for and I almost found all of them in an article, but "nice" mode. Does anyone know what this "nice" mode stands for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很好:用户代码可以以“正常”优先级或不同程度的“低于正常”优先级执行。例如,您可以以较低优先级运行某种报告生成进程,并以正常优先级运行交互进程。好的情况是 CPU 正在执行优先级低于正常的用户任务。
来自这篇文章
Nice: The user code can be executed in “normal” priority, or various degrees of “below normal” priority. You can, for example, run some kind of report generation process at a lower priority and interactive processes at normal priority. Nice is when the CPU is executing a user task having below-normal priority.
from this article