blob: 837b479b2138b41456559923423be5211c92585b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>SDN-C AdminPortal</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<% include ../partials/head %>
<% include ../partials/ro_header %>
</head>
<body class="container">
<div class="actions" style="padding:0px 25px;">
<h2>SDN-C AdminPortal Healthcheck</h2>
</div>
<% if (typeof osObj != 'undefined')
{ %>
<pre>
Hostname : <%= osObj.hostname %>
Type : <%= osObj.type %>
Platform : <%= osObj.platform %>
Architecture : <%= osObj.arch %>
Release : <%= osObj.release %>
Uptime : <%= osObj.uptime %>
Total Memory : <%= osObj.totalmem %>
<%= osObj.dbhealth %>
</pre>
<% } %>
<footer>
<% include ../partials/footer %>
</footer>
</body>
</html>
|