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

Annotation of /misc/xenconsole/index.php

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.20