gpt4 book ai didi

linux - 使用 htop 命令时,time+ 列中的红色值是否表示有问题?

转载 作者:IT王子 更新时间:2023-10-29 00:17:16 26 4
gpt4 key购买 nike

下面是我的服务器 htop 显示。 nginx 进程使用 CPU 时间超过 18 小时,并显示为红色,但 CPU 和内存看起来都正常。是否在正常范围内?

enter image description here

最佳答案

我也很好奇,所以我研究了源代码,发现了这个:

if (hours >= 100) {
snprintf(buffer, 10, "%7lluh ", hours);
RichString_append(str, CRT_colors[LARGE_NUMBER], buffer);
} else {
if (hours) {
snprintf(buffer, 10, "%2lluh", hours);
RichString_append(str, CRT_colors[LARGE_NUMBER], buffer);
snprintf(buffer, 10, "%02d:%02d ", minutes, seconds);
} else {
snprintf(buffer, 10, "%2d:%02d.%02d ", minutes, seconds, hundredths);
}
RichString_append(str, CRT_colors[DEFAULT_COLOR], buffer);
}

因此,看起来只要 CPU 时间超过一小时,小时部分就会以红色突出显示(或者任何 CRT_colors[LARGE_NUMBER] 恰好是这样。)

注意时间格式随时间变化:

4:33.42 是分/秒/毫秒

18h26:41 是小时/分钟/秒

101h 将是小时 > 100

关于linux - 使用 htop 命令时,time+ 列中的红色值是否表示有问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28059294/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com