mirror of
https://github.com/thewtex/tmux-mem-cpu-load.git
synced 2026-09-10 07:16:16 -04:00
Add load average.
This commit is contained in:
parent
88938b24c3
commit
d83d5e302d
|
|
@ -131,11 +131,21 @@ string mem_string()
|
|||
return oss.str();
|
||||
}
|
||||
|
||||
string load_string()
|
||||
{
|
||||
ifstream loadavg_file( "/proc/loadavg" );
|
||||
string load_line;
|
||||
getline( loadavg_file, load_line );
|
||||
loadavg_file.close();
|
||||
|
||||
return load_line.substr( 0, 14 );
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
try
|
||||
{
|
||||
std::cout << mem_string() << ' ' << cpu_string();
|
||||
std::cout << mem_string() << ' ' << cpu_string() << ' ' << load_string();
|
||||
}
|
||||
catch(const exception &e)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue