/[projects]/misc/xenconsole/index.php
ViewVC logotype

Contents of /misc/xenconsole/index.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1894 - (show annotations) (download)
Mon Dec 3 15:01:45 2012 UTC (11 years, 5 months ago) by torben
File size: 9931 byte(s)
hide logo when ever data is loading
1 <?php
2 include("config.php");
3
4 function format_memory($size) {
5 if (1024 > $size) {
6 return "$size B";
7 } else if (pow(1024,2) > $size) {
8 return round(($size / 1024),2) . " kB";
9 } else {
10 return round(($size / pow(1024,2)), 2) . " MB";
11 }
12 }
13
14 function format_storage($size) {
15 if (1024 > $size) {
16 return "$size B";
17 } else if (pow(1024,2) > $size) {
18 return round(($size / 1024),2) . " kB";
19 } else if (pow(1024,3) > $size) {
20 return round(($size / pow(1024,2)), 2) . " MB";
21 } else if (pow(1024,4) > $size) {
22 return round(($size / pow(1024,3)), 2). " GB";
23 }
24 }
25
26 include('xenapi.php');
27
28 /* Establish session with Xenserver */
29 $xenserver = new XenApi($url, $login, $password);
30
31 $hosts_array = $xenserver->host__get_all();
32 $host = $xenserver->host__get_record($hosts_array[0]);
33 $host_metrics = $xenserver->host_metrics__get_record($host["metrics"]);
34
35 $xenversion = $host["software_version"]["product_brand"] . " " . $host["software_version"]["product_version"];
36 $xenversion .= " / Linux:" . $host["software_version"]["linux"] . " / xen: " . $host["software_version"]["xen"] . " / xapi: " . $host["software_version"]["xapi"] ;
37
38 $expire = split('T', $host["license_params"]["expiry"]);
39 $license = "License: " . $host["license_params"]["sku_type"] . ", expires " . $expire[0] ;
40
41 $vms_array = $xenserver->VM__get_all_records();
42
43
44 ?>
45 <html>
46 <head>
47 <title>XenServer::SERVER</title>
48 <script type='text/javascript' src="jquery-1.8.2.min.js"></script>
49
50 <script type='text/javascript'>
51 $(document).ready( function() {
52 setInterval(refreshData, 60000);
53 refreshData();
54 $('.console').click( function() {
55 var session = $(this).data('session');
56 var conurl = $(this).data('conurl');
57 console(conurl,session);
58 });
59
60 $('#logo').click( function() {
61 refreshData();
62 });
63 });
64
65 function refreshData() {
66 $("#logo").hide();
67 $.get('ajaxdata.php', function(xml) {
68 $(xml).find('host').each(function() {
69 var memtotal = $(this).find('memtotal').text();
70 var memfree = $(this).find('memfree').text();
71 var cpuavg = $(this).find('cpuavg').text();
72
73 memtotal = Math.round ( memtotal / (1024*1024) );
74 memfree = Math.round ( memfree / (1024*1024) );
75 var memused = memtotal - memfree;
76 var mem_percentage = Math.round( (memused/memtotal) * 100);
77
78 //alert(memused + ' ' + mem_percentage);
79
80 $('#server_memory_usage').attr('src', 'usagebar.php?usage=' + mem_percentage);
81 $('#server_memory_usage').attr('alt', mem_percentage + '%');
82 $('#server_memory_usage').attr('title', mem_percentage + '%');
83 $('#server_memory_usage_txt').text( memused + '/' + memtotal + 'MB');
84
85
86 $('#server_cpu_usage').attr('src', 'usagebar.php?usage=' + cpuavg);
87 $('#server_cpu_usage').attr('alt', cpuavg + '%');
88 $('#server_cpu_usage').attr('title', cpuavg + '%');
89 $('#server_cpu_usage_txt').text( cpuavg+ '%');
90 });
91 $(xml).find('vm').each(function() {
92 var name = $(this).find('name').text();
93 var state = $(this).find('state').text();
94 var network = $(this).find('network').text();
95 var state = $(this).find('state').text();
96 var conurl = $(this).find('conurl').text();
97 var session = $(this).find('session').text();
98 var os = $(this).find('os').text();
99 var cpuavg = $(this).find('cpuavg').text();
100
101 name = name.replace(" ", "_");
102 name = name.replace(".", "_");
103
104 var id = "#vm_" + name;
105
106 var vm = $(id);
107
108 if (state == "Running") {
109 vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");
110 vm.find('.network').show();
111 vm.find('.network').text( '(IP: ' + network + ')' );
112 vm.find('.console').show();
113 vm.find('.console').data('conurl', conurl);
114 vm.find('.console').data('session', session);
115 vm.find('.actionstop').show();
116 vm.find('.actionstart').hide();
117 vm.find('.os').text(' - ' + os);
118
119
120 vm.find('.cpu_graph').show();
121 vm.find('.cpu_graph').attr('src', 'usagebar.php?usage=' + cpuavg);
122 vm.find('.cpu_graph').attr('title', cpuavg + '%');
123 vm.find('.mem_graph').show();
124 } else {
125 if (state == "Halted") {
126 vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
127 } else {
128 vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
129 }
130 vm.find('.network').hide();
131 vm.find('.console').hide();
132 vm.find('.actionstop').hide();
133 vm.find('.actionstart').show();
134 vm.find('.cpu_graph').hide();
135 vm.find('.mem_graph').hide();
136 }
137
138 });
139 $('#logo').show();
140 });
141 }
142
143 function doAction(action, uuid, vm) {
144 var key = prompt("Key");
145 if (key == "" || key == null) {
146 return;
147 }
148 document.body.style.cursor = 'wait';
149 $('#vm_' + vm).find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
150
151 var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;
152 var response = $.get(url, function(data) {
153 if (data != 'OK') {
154 alert(data);
155 }
156 document.body.style.cursor = 'default'
157
158 refreshData();
159 });
160 }
161
162 function console(url, session) {
163 if (url == '')
164 return;
165
166 var key = prompt("Key");
167 if (key == "" || key == null) {
168 return;
169 }
170 var url = "console.php?url=" + url + "&session=" + session + "&key=" + key;
171
172 //window.location = url;
173 //$('#mainwindow').load(url);
174 window.open(url);
175 }
176
177
178
179 </script>
180
181 <style>
182 body {
183 background: #eee;
184 margin-top: 5px;
185 font-family:verdana,helvetica,arial,sans-serif;
186 font-size: 14px;
187
188 }
189
190 .maintable {
191 background: #fff;
192 margin-left:auto; // Smart center
193 margin-right:auto;
194 padding: 0;
195 border: 3px solid #999;
196 }
197
198 .small {
199 font-family:verdana,helvetica,arial,sans-serif;
200 font-size: 11px;
201 }
202
203 .toptable {
204 border-bottom: 3px solid #999;
205 }
206
207 .vps {
208 margin: 4;
209 border: 1px solid #222;
210 }
211 </style>
212 </head>
213 <body>
214
215 <table class='maintable' width='800' align='center' cellpadding='0' cellspacing='0'><tr><td>
216
217 <table width='100%' background='gfx/topbg.png' cellpadding='3' cellspacing='0' border='0' class='toptable'>
218 <tr>
219 <td rowspan='2' width='160'><img src='gfx/citrix-logo.png' id='logo'></td>
220 <td colspan='4' class='small' align='right'><?php echo $xenversion;?><br><?php echo $license;?></td>
221 </tr>
222 <tr>
223 <td width='150' align='right' class='small'><img src='gfx/icon-cpu.png'>
224 <img id='server_cpu_usage' src='usagebar.php?usage=12' width='102' height='16' title='static dummy data'><div id='server_cpu_usage_txt'>12%</div></td>
225
226 <td width='150' align='right' class='small'><img src='gfx/icon-memory.png'>
227 <img id='server_memory_usage' src='usagebar.php?usage=1' width='102' height='16' title='static dummy data'><div id='server_memory_usage_txt'>0/4 MB</div></td>
228
229 <td width='150' align='right' class='small'><img src='gfx/icon-network.png'>
230 <img id='server_net_usage' src='usagebar.php?usage=41' width='102' height='16' title='static dummy data'><div id='server_net_usage_txt'>1%</div></td>
231 <td width='150' align='right' class='small'><img src='gfx/icon-disk.png'>
232 <img id='server_disk_usage' src='usagebar.php?usage=41' width='102' height='16' title='static dummy data'><div id='server_memory_usage_txt'>89.3/405.5 GB</div></td>
233
234 </td>
235 </tr></table>
236
237
238
239 <?php
240 // List all machines
241 foreach($vms_array as $vm) {
242 if ($vm["is_a_template"] != 0 || $vm["is_control_domain"] != 0) {
243 continue;
244 }
245
246 $name = $vm["name_label"];
247 $uuid = $vm["uuid"];
248 $state = $vm["power_state"] ;
249 $memory = $vm['memory_target'];
250 $harddrive_size = 0;
251 $cpu_count = $vm["VCPUs_max"];
252
253 $clean_name = str_replace(" ", "_", $name);
254 $clean_name = str_replace(".", "_", $clean_name);
255
256
257 foreach ($vm["VBDs"] as $vbds) {
258 $vbd = $xenserver->VBD__get_record($vbds);
259 if ($vbd["type"] == 'Disk') {
260 $vdi = $xenserver->VDI__get_record( $vbd["VDI"] );
261 $harddrive_size += $vdi["virtual_size"];
262 }
263 }
264
265
266
267 ?>
268 <!-- MACHINE -->
269 <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>
270 <tr background='gfx/vps_topbg.png' >
271 <td width='10' class='small state'>&nbsp;</td>
272 <td colspan='2' class='small'><b><?php echo $name; ?></b><span class='os'></span></td>
273 <td colspan='2' class='small' align='right'>
274 <span class='network'></span>
275 <a href='#' style='display:none;' class='console'>
276 <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
277 </a>
278 </td>
279 </tr>
280
281 <tr bgcolor='#eee'>
282 <td></td>
283
284 <td width='150' class='small'>
285 <span class="actionstop" style='display:none'>
286 start |
287 <a href='#' onclick="doAction('shutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >stop</a> |
288 <a href='#' onclick="doAction('hardshutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >force shutdown</a>
289 </span>
290
291 <span class="actionstart">
292 <a href='#' onclick="doAction('start','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >start</a> |
293 stop |
294 force shutdown
295 </span>
296
297 </td>
298
299 <td width='100' align='right' class='small' valign='top'>
300 <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='cpu_graph'><br>
301 <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>
302 <span id='vps_cpu_usage_txt_UID'><?php echo $cpu_count; ?> VCPU</span>
303 </td>
304 <td width='100' align='right' class='small'>
305 <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='mem_graph'><br>
306 <img src='gfx/icon-memory.png' style='vertical-align: middle;'>
307 <span id='vps_memory_usage_txt_UID'><?php echo format_memory($memory); ?></span>
308 </td>
309 <!--
310 <td width='100' align='right' class='small'>
311 <img src='gfx/icon-network.png' style='vertical-align: middle;'>
312 <span id='vps_net_usage_txt_UID'>na</span>
313 </td>
314 -->
315 <td width='100' align='right' class='small' valign='top'>
316 <img src='gfx/icon-disk.png' style='vertical-align: middle;'>
317 <span id='vps_disk_usage_txt_UID'><?php echo format_storage($harddrive_size); ?></span>
318 </td>
319 </tr>
320
321
322 </table>
323 <!-- MACHINE END -->
324
325 <?PHP } ?>
326 </td></tr></table>
327 </body></html>

  ViewVC Help
Powered by ViewVC 1.1.20