summaryrefslogtreecommitdiff
path: root/src/utils/stats.ts
blob: 1615268310d2d2692d6e95afc0fcd76eb3cc2a14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import * as os from 'os';
const osUtils = require('os-utils');
import * as diskusage from 'diskusage';
import Xev from 'xev';

const ev = new Xev();

/**
 * Report stats regularly
 */
export default function() {
	setInterval(() => {
		osUtils.cpuUsage(cpuUsage => {
			const disk = diskusage.checkSync(os.platform() == 'win32' ? 'c:' : '/');
			ev.emit('stats', {
				cpu_usage: cpuUsage,
				mem: {
					total: os.totalmem(),
					free: os.freemem()
				},
				disk
			});
		});
	}, 1000);
}