mirror of
https://github.com/wekan/wekan.git
synced 2026-01-21 08:46:09 +01:00
Add display wekan version number and runtime environment
This commit is contained in:
parent
3085230b13
commit
e407eb9a8b
7 changed files with 166 additions and 3 deletions
26
server/statistics.js
Normal file
26
server/statistics.js
Normal 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;
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue