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

Contents of /misc/xenconsole/index.php

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.20