-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.1
161 lines (148 loc) · 4.66 KB
/
index.html.1
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<base href="/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Eureka</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="eureka/css/wro.css">
</head>
<body id="one">
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href=""><span></span></a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="">Home</a>
</li>
<li>
<a href="/lastn">Last 1000 since startup</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid xd-container">
<h1>System Status</h1>
<div class="row">
<div class="col-md-6">
<table id='instances' class="table table-condensed table-striped table-hover">
<tr>
<td>Environment</td>
<td>test</td>
</tr>
<tr>
<td>Data center</td>
<td>default</td>
</tr>
</table>
</div>
<div class="col-md-6">
<table id='instances' class="table table-condensed table-striped table-hover">
<tr>
<td>Current time</td>
<td>2016-06-06T16:04:26 +0000</td>
</tr>
<tr>
<td>Uptime</td>
<td>00:03</td>
</tr>
<tr>
<td>Lease expiration enabled</td>
<td>false</td>
</tr>
<tr>
<td>Renews threshold</td>
<td>1</td>
</tr>
<tr>
<td>Renews (last min)</td>
<td>0</td>
</tr>
</table>
</div>
</div>
<h4 id="uptime"><font size="+1" color="red"><b>EMERGENCY! EUREKA MAY BE INCORRECTLY CLAIMING INSTANCES ARE UP WHEN THEY'RE NOT. RENEWALS ARE LESSER THAN THRESHOLD AND HENCE THE INSTANCES ARE NOT BEING EXPIRED JUST TO BE SAFE.</b></font></h4>
<h1>DS Replicas</h1>
<ul class="list-group">
<li class="list-group-item"><a href="http://localhost:8761/eureka/">localhost</a></li>
</ul>
<h1>Instances currently registered with Eureka</h1>
<table id='instances' class="table table-striped table-hover">
<thead>
<tr><th>Application</th><th>AMIs</th><th>Availability Zones</th><th>Status</th></tr>
</thead>
<tbody>
<tr><td colspan="4">No instances available</td></tr>
</tbody>
</table>
<h1>General Info</h1>
<table id='generalInfo' class="table table-striped table-hover">
<thead>
<tr><th>Name</th><th>Value</th></tr>
</thead>
<tbody>
<tr>
<td>total-avail-memory</td><td>385mb</td>
</tr>
<tr>
<td>environment</td><td>test</td>
</tr>
<tr>
<td>num-of-cpus</td><td>2</td>
</tr>
<tr>
<td>current-memory-usage</td><td>54mb (14%)</td>
</tr>
<tr>
<td>server-uptime</td><td>00:03</td>
</tr>
<tr>
<td>registered-replicas</td><td>http://localhost:8761/eureka/</td>
</tr>
<tr>
<td>unavailable-replicas</td><td>http://localhost:8761/eureka/,</td>
</tr>
<tr>
<td>available-replicas</td><td></td>
</tr>
</tbody>
</table>
<h1>Instance Info</h1>
<table id='instanceInfo' class="table table-striped table-hover">
<thead>
<tr><th>Name</th><th>Value</th></tr>
<thead>
<tbody>
<tr>
<td>ipAddr</td><td>172.17.0.2</td>
</tr>
<tr>
<td>status</td><td>UP</td>
</tr>
</tbody>
</table>
</div>
<script type="text/javascript" src="eureka/js/wro.js" ></script>
<script type="text/javascript">
$(document).ready(function() {
$('table.stripeable tr:odd').addClass('odd');
$('table.stripeable tr:even').addClass('even');
});
</script>
</body>
</html>