2017-09-17 16:45:03 +01:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-28 17:26:56 +01:00
|
|
|
#include <stdio.h>
|
2017-09-17 15:18:17 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2017-09-24 14:33:01 +01:00
|
|
|
#include "../util.h"
|
2017-09-17 15:18:17 +01:00
|
|
|
|
|
|
|
const char *
|
2018-05-21 13:14:45 +01:00
|
|
|
load_avg(void)
|
2017-09-17 15:18:17 +01:00
|
|
|
{
|
|
|
|
double avgs[3];
|
|
|
|
|
|
|
|
if (getloadavg(avgs, 3) < 0) {
|
2018-05-18 09:59:05 +01:00
|
|
|
warn("getloadavg: Failed to obtain load average");
|
2017-09-17 15:18:17 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-21 13:14:45 +01:00
|
|
|
return bprintf("%.2f %.2f %.2f", avgs[0], avgs[1], avgs[2]);
|
2017-09-17 15:18:17 +01:00
|
|
|
}
|