为了找到 linux 中的平均负载,我使用了 sys/sysinfo.h,其中包括 linux/kernel.h,其中定义了以下结构:
struct sysinfo {
long uptime; /* Seconds since boot */
unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
unsigned long totalram; /* Total usable main memory size */
unsigned long freeram; /* Available memory size */
unsigned long sharedram; /* Amount of shared memory */
unsigned long bufferram; /* Memory used by buffers */
unsigned long totalswap; /* Total swap space size */
unsigned long freeswap; /* swap space still available */
unsigned short procs; /* Number of current processes */
unsigned short pad; /* explicit padding for m68k */
unsigned long totalhigh; /* Total high memory size */
unsigned long freehigh; /* Available high memory size */
unsigned int mem_unit; /* Memory unit size in bytes */
char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
};
但我认为它并没有给出真正的负载。
输出:2552402、3214049236、134513148
这个值是什么意思?
uptime
我们可以使用以下命令找到当前负载:
$uptime
13:00:14 up 35 min, 2 users, load average: 1.07, 0.95, 0.80
我找不到以上两个输出之间的任何联系。
我在互联网上搜索过。这表示将其除以 2^16 (65536)。我也试过了。(或按 SI_LOAD_SHIFT 移动 1,即 1 << SI_LOAD_SHIFT。因为 65536 = 1 << 16)
我使用具有四个 i3-2120 处理器的计算机。'upitime' 的输出与 CPU 的数量有关。维基百科 load_average