htop CPU使用率计算

这篇博客探讨了如何通过htop工具来查看Linux系统的CPU使用情况。内容包括user、nice、system、idle、iowait、irq和softirq等状态的解释,以及获取CPU核心数和计算CPU使用率的代码示例。
摘要由CSDN通过智能技术生成

linux下的内存CPU等资源的使用情况可通过解析虚拟文件系统/proc的相关文件获得。htop就是通过解析该目录下的/proc/stat文件得到CPU的核数以及动态的使用情况。
可通过cat /proc/stat命令查看该文件内容,下面是该文件中的第一行,以及每个量对应的意义:
cpu  148627 236   41339   2372383 38801   0     1500      0      0      0
name user   nice  system  idle    iowait  irq   softirq   steal  guest
  • user: normal processes executing in user mode
  • nice: niced processes executing in user mode
  • system: processes executing in kernel mode
  • idle: twiddling thumbs
  • iowait: waiting for I/O to complete
  • irq: servicing interrupts
  • softirq: servicing softirqs
Note:
The 8th column is called steal_time. It counts the ticks spent
executing other virtual hosts (in virtualised environments like Xen)
Note2:
With Linux 2.6.24 there is 9th column for (virtual) guest systems.
(引自: http://www.linuxhowtos.org/System/procstat.htm)
htop中CPU使用率计算方式
定义总的忙时间allbasytime=user+nice+system+irq+softirq
定义总的运行时间allruntime=allbasytime+idle+iowait+steal+guest
在两个时间相近的时间点t0和t1读取/proc/stat文件,计算出allbasytime_t0, allruntime_t0, allbasytime_t1, allruntime_t1
在某段时间内CPU的使用率计算公式为:
userate=(allbasytime_t1 – allbasytime_t0) / (allruntime_t1 – allruntime_t1) * 100.0
根据这个原理,可以通过如下得到CPU的使用率:
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
typedef struct{
	char name[20];
	unsigned long long user;
	unsigned long long nice;
	unsigned long long system;
	unsigned long long idle;
	unsigned long l
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值