You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
const prettyBytes = require('pretty-bytes');
|
|
const moment = require('moment');
|
|
|
|
const filters = {
|
|
bandwidth: node => `${prettyBytes(node.advertised_bandwidth)}/s`,
|
|
uptime: node => {
|
|
|
|
// Check node is up
|
|
if(!node.running) {
|
|
return 'Down';
|
|
}
|
|
|
|
// Check uptime
|
|
const lastRestarted = moment.utc(node.last_restarted);
|
|
const diff = moment.utc().diff(lastRestarted);
|
|
const uptime = {};
|
|
|
|
uptime.s = Math.round(diff / 1000);
|
|
uptime.m = Math.floor(uptime.s / 60);
|
|
uptime.h = Math.floor(uptime.m / 60);
|
|
uptime.d = Math.floor(uptime.h / 24);
|
|
|
|
uptime.s %= 60;
|
|
uptime.m %= 60;
|
|
uptime.h %= 24;
|
|
|
|
let readableUptime = '';
|
|
readableUptime += uptime.d ? ` ${uptime.d}d` : '';
|
|
readableUptime += uptime.h ? ` ${uptime.h}h` : '';
|
|
readableUptime += !uptime.d && uptime.m ? ` ${uptime.m}m` : '';
|
|
|
|
return readableUptime.trim();
|
|
}
|
|
};
|
|
|
|
module.exports = app => Object.keys(filters).forEach(filter => {
|
|
app.settings.nunjucksEnv.addFilter(filter, filters[filter])
|
|
});
|
|
|