%- include('_head.ejs') %>
|
Hostname |
<%= info.hostname %> |
|
System Uptime |
<%= info.uptime %> |
|
OS Version |
<%= info.type %> - <%= info.release %> |
|
Architecture |
<%= info.arch %> |
|
Processors |
<%= info.cpus.length%> × <%= info.cpus[0].model %> |
|
Memory |
<%= info.mem %> MB |
|
Node Version |
<%= info.nodever %> |
<% if (process.env.RELEASE_INFO) { %>
|
Release Info |
<%= process.env.RELEASE_INFO %> |
<% } %>
<% for(let envVar in process.env) { %>
<% if (envVar.toUpperCase().includes('SECRET')) continue %>
<% if (envVar.toUpperCase().includes('PWD')) continue %>
<% if (envVar.toUpperCase().includes('PASSWORD')) continue %>
<% if (envVar.toUpperCase().includes('KEY')) continue %>
<% if (envVar.toUpperCase().includes('CONNSTR')) continue %>
<% if (envVar.toUpperCase().includes('PATH')) continue %>
<% if (envVar.toUpperCase().includes('NPM_')) continue %>
<% if (envVar.toUpperCase().includes('NPM_')) continue %>
<%= envVar %> |
<%= process.env[envVar] %> |
<% } %>
<%- include('_foot.ejs') %>