查找快速进程的CPU使用情况

时间:2015-04-17 22:03:04

标签: c++ linux profiling cpu-usage

我正在寻找一种方法来衡量在1秒内完成的流程的CPU使用率。

由于速度如此之快,top并不公平。根据我的理解,top会拍摄快照,因此可以在更新之间完成此过程。

程序是用C ++编写的,我在Linux上运行。如果有一些简单的代码我可以复制并粘贴到我的程序中,在main()结束时输出CPU使用情况,那就可以了。或者,如果有一些分析工具,我也可以使用它。

编辑 -  似乎人们对我想要的东西有一些误解。

寻找持续时间。我知道持续时间。大约1秒钟。 我想知道的是CPU使用率。如果它是100%,则表示我的CPU运行整整1秒。

如果它是50%,那么这意味着CPU在50%的时间内处于空闲状态。它有可能等待其他50%的IO。

如果我的程序运行了很长时间,top很好,因为它显示的是这样的东西

%Cpu(s): 0.6 us, 0.3 sy, 0.0 ni, 99.1 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st

这表示我的cpu占用户空间的0.6%,内核空间占0.3%的时间,而且只占99.1%的空闲时间。

但是 - 正如我之前所说,top对快速流程不起作用。那我该怎么办?

感谢

1 个答案:

答案 0 :(得分:0)

试试这个:

#include <unistd.h>

#include <fstream>
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

#include <boost/lexical_cast.hpp>
#include <boost/regex.hpp>
#include <boost/date_time.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>


//This function reads /proc/stat and returns the idle value for each cpu in a vector
std::vector<long long> get_idle() {

    //Virtual file, created by the Linux kernel on demand
    std::ifstream in( "/proc/stat" );

    std::vector<long long> result;

    //This might broke if there are not 8 columns in /proc/stat
    boost::regex reg("cpu(\\d+) (\\d+) (\\d+) (\\d+) (\\d+) (\\d+) (\\d+) (\\d+) (\\d+)");

    std::string line;
    while ( std::getline(in, line) ) {

        boost::smatch match;
        if ( boost::regex_match( line, match, reg ) ) {

            long long idle_time = boost::lexical_cast<long long>(match[5]);

            result.push_back( idle_time );
        }


    }
    return result;
}

//This function returns the avarege load in the next interval_seconds for each cpu in a vector
//get_load() halts this thread for interval_seconds
std::vector<float> get_load(unsigned interval_seconds) {

    boost::posix_time::ptime current_time_1 = boost::date_time::microsec_clock<boost::posix_time::ptime>::universal_time();
    std::vector<long long> idle_time_1 = get_idle();

    sleep(interval_seconds);

    boost::posix_time::ptime current_time_2 = boost::date_time::microsec_clock<boost::posix_time::ptime>::universal_time();
    std::vector<long long> idle_time_2 = get_idle();

    //We have to measure the time, beacuse sleep is not accurate
    const float total_seconds_elpased = float((current_time_2 - current_time_1).total_milliseconds()) / 1000.f;

    std::vector<float> cpu_loads;

    for ( unsigned i = 0; i < idle_time_1.size(); ++i ) {

        //This might get slightly negative, because our time measurment is not accurate
        const float load = 1.f - float(idle_time_2[i] - idle_time_1[i])/(100.f * total_seconds_elpased);
        cpu_loads.push_back( load );

    }
    return cpu_loads;
}

int main() {

    const unsigned measurement_count = 5;
    const unsigned interval_seconds = 5;

    for ( unsigned i = 0; i < measurement_count; ++i ) {

        std::vector<float> cpu_loads = get_load(interval_seconds);
        for ( unsigned i = 0; i < cpu_loads.size(); ++i ) {
            std::cout << "cpu " << i << " : " << cpu_loads[i] * 100.f << "%" << std::endl;
        }
    }


    return 0;
}