Compare View

switch
from
...
to
 
Commits (2)

Changes

Showing 3 changed files Side-by-side Diff

control-panel/lib/router-main.js
... ... @@ -39,6 +39,7 @@ function pageRuntime(req, res, next) {
39 39 req.app.locals.cp_views_dir + '/runtime.html',
40 40 {
41 41 uptime: numeral(process.uptime()).format(),
  42 + matrix: JSON.stringify(matrix, null, 4),
42 43 memory_usage: JSON.stringify(process.memoryUsage(), null, 4),
43 44 os_info: JSON.stringify({
44 45 uptime: os.uptime(),
control-panel/views/runtime.html
... ... @@ -8,6 +8,11 @@
8 8 </div>
9 9 </div>
10 10  
  11 +{% if matrix %}
  12 +<h2 id="matrix">The Matrix</h2>
  13 +<pre>{{ matrix }}</pre>
  14 +{% endif %}
  15 +
11 16 <h2 id="memory_usage">Pemakaian Memori</h2>
12 17 <pre>{{ memory_usage }}</pre>
13 18  
1 1 {
2 2 "name": "komodo-sdk",
3   - "version": "1.10.5",
  3 + "version": "1.10.6",
4 4 "description": "SDK for Komodo",
5 5 "main": "index.js",
6 6 "scripts": {