Add display wekan version number and runtime environment

This commit is contained in:
nztqa 2017-08-03 09:24:40 +09:00
parent 3085230b13
commit e407eb9a8b
7 changed files with 166 additions and 3 deletions

26
server/statistics.js Normal file
View file

@ -0,0 +1,26 @@
Meteor.methods({
getStatistics() {
const os = require('os');
const pjson = require('/package.json');
const statistics = {};
statistics.version = pjson.version;
statistics.os = {
type: os.type(),
platform: os.platform(),
arch: os.arch(),
release: os.release(),
uptime: os.uptime(),
loadavg: os.loadavg(),
totalmem: os.totalmem(),
freemem: os.freemem(),
cpus: os.cpus(),
};
statistics.process = {
nodeVersion: process.version,
pid: process.pid,
uptime: process.uptime(),
};
return statistics;
},
});