summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/stats.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/utils/stats.ts b/src/utils/stats.ts
index 1615268310..cfb710f5e1 100644
--- a/src/utils/stats.ts
+++ b/src/utils/stats.ts
@@ -18,7 +18,9 @@ export default function() {
total: os.totalmem(),
free: os.freemem()
},
- disk
+ disk,
+ os_uptime: os.uptime(),
+ process_uptime: process.uptime()
});
});
}, 1000);