summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-06-09 01:45:25 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-06-09 01:45:25 +0900
commit6eff8fde74e01fa3527585ec1fbd3629d51bc97a (patch)
tree55c39e88edb7e68f1928554b85bd036c96bc7ed8 /src/utils
parentMerge pull request #1685 from 2vg/patch-1 (diff)
downloadsharkey-6eff8fde74e01fa3527585ec1fbd3629d51bc97a.tar.gz
sharkey-6eff8fde74e01fa3527585ec1fbd3629d51bc97a.tar.bz2
sharkey-6eff8fde74e01fa3527585ec1fbd3629d51bc97a.zip
サーバーの統計情報をメモリに記憶するようにするなど
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/stats.ts27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/utils/stats.ts b/src/utils/stats.ts
deleted file mode 100644
index cfb710f5e1..0000000000
--- a/src/utils/stats.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-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,
- os_uptime: os.uptime(),
- process_uptime: process.uptime()
- });
- });
- }, 1000);
-}