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

Diff of /misc/xenconsole/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1882 by torben, Fri Nov 30 10:58:49 2012 UTC revision 1903 by torben, Tue Dec 11 10:18:25 2012 UTC
# Line 28  include('xenapi.php'); Line 28  include('xenapi.php');
28  /* Establish session with Xenserver */  /* Establish session with Xenserver */
29  $xenserver = new XenApi($url, $login, $password);  $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();  $vms_array = $xenserver->VM__get_all_records();
42    
43    $namelabel = $host["name_label"];
44    
45  ?>  ?>
46  <html>  <html>
47  <head>  <head>
48  <title>XenServer::SERVER</title>  <title>XenServer::<?php echo $namelabel;?></title>
49  <script type='text/javascript' src="jquery-1.8.2.min.js"></script>  <script type='text/javascript' src="jquery-1.8.2.min.js"></script>
50    
51  <script type='text/javascript'>  <script type='text/javascript'>
52  $(document).ready( function() {  $(document).ready( function() {
53          loadServer();          setInterval(refreshData, 60000);        
54            refreshData();
55            $('.console').click( function() {
56                    var session = $(this).data('session');
57                    var conurl = $(this).data('conurl');
58                    console(conurl,session);
59            });
60    
61            $('#logo').click( function() {
62                    refreshData();
63            });
64  });  });
65    
66  function doAction(action, uuid) {  function refreshData() {
67            $("#logo").hide();      
68            $.get('ajaxdata.php', function(xml) {
69                    $(xml).find('host').each(function() {
70                            var memtotal = $(this).find('memtotal').text();
71                            var memfree = $(this).find('memfree').text();  
72                            var cpuavg = $(this).find('cpuavg').text();
73    
74                            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                            $('#server_memory_usage').attr('alt', mem_percentage + '%');
83                            $('#server_memory_usage').attr('title', mem_percentage + '%');
84                            $('#server_memory_usage_txt').text( memused + '/' + memtotal + 'MB');
85    
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                    });
92                    $(xml).find('vm').each(function() {
93                            var name = $(this).find('name').text();
94                            var state = $(this).find('state').text();
95                            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                            var os = $(this).find('os').text();
100                            var guestversion = $(this).find('guestversion').text();
101                            var cpuavg = $(this).find('cpuavg').text();
102                            var curmem = $(this).find('curmem').text();
103                            var maxmem = $(this).find('maxmem').text();
104    
105                            var mempercent = Math.round( (curmem*100) / maxmem );
106    
107                            name = name.replace(" ", "_");
108                            name = name.replace(".", "_");
109                            
110                            var id = "#vm_" + name;
111    
112                            var vm = $(id);                
113    
114                            if (guestversion != '') {
115                                    os += ' Guest Tools: ' + guestversion;
116                            }
117    
118                            if (state == "Running") {
119                                    vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");
120                                    vm.find('.network').show();
121                                    vm.find('.network').text( '(IP: ' + network + ')' );
122                                    vm.find('.console').show();
123                                    vm.find('.console').data('conurl', conurl);
124                                    vm.find('.console').data('session', session);
125                                    vm.find('.actionstop').show();
126                                    vm.find('.actionstart').hide();
127                                    vm.find('.os').text(' - ' + os);
128    
129    
130                                    vm.find('.cpu_graph').show();
131                                    vm.find('.cpu_graph').attr('src', 'usagebar.php?usage=' + cpuavg);
132                                    vm.find('.cpu_graph').attr('title',  cpuavg + '%');
133    
134                                    vm.find('.mem_graph').show();
135                                    vm.find('.mem_graph').attr('src', 'usagebar.php?usage=' + mempercent);
136                                    vm.find('.mem_graph').attr('title',  curmem + ' / ' + maxmem + ' MB' );
137                            } else {
138                                    if (state == "Halted") {
139                                            vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
140                                    } else {
141                                            vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
142                                    }
143                                    vm.find('.os').text('');
144    
145                                    vm.find('.network').hide();
146                                    vm.find('.console').hide();
147                                    vm.find('.actionstop').hide();
148                                    vm.find('.actionstart').show();
149                                    vm.find('.cpu_graph').hide();
150                                    vm.find('.mem_graph').hide();
151                            }
152                            
153                    });
154                    $('#logo').show();
155           });
156    }
157    
158    function doAction(action, uuid, vm) {
159          var key = prompt("Key");          var key = prompt("Key");
160          if (key == "" || key == null) {          if (key == "" || key == null) {
161                  return;                  return;
162          }          }
163          document.body.style.cursor = 'wait';          document.body.style.cursor = 'wait';
164            $('#vm_' + vm).find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
165    
166          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;
167          var response = $.get(url, function(data) {          var response = $.get(url, function(data) {
168                  alert(data);                  if (data != 'OK') {
169                  document.body.style.cursor = 'default'                          alert(data);
                 if (data == "OK") {  
                         window.location.reload();  
170                  }                  }
171                    document.body.style.cursor = 'default'
172    
173                    refreshData();
174          });          });
175  }  }
176    
# Line 74  function console(url, session) { Line 189  function console(url, session) {
189          window.open(url);          window.open(url);
190  }  }
191    
 function loadServer() {  
         $('#mainwindow').load('server.php');  
 }  
192    
 function loadvm(uuid) {  
         $('#mainwindow').load('vm.php?uuid=' + uuid );  
 }  
193    
194  </script>  </script>
195    
# Line 122  body { Line 231  body {
231    
232  <table width='100%' background='gfx/topbg.png' cellpadding='3' cellspacing='0' border='0' class='toptable'>  <table width='100%' background='gfx/topbg.png' cellpadding='3' cellspacing='0' border='0' class='toptable'>
233  <tr>  <tr>
234          <td rowspan='2' width='160'><img src='gfx/citrix-logo.png'></td>          <td rowspan='2' width='160'><img src='gfx/citrix-logo.png' id='logo'></td>
235          <td colspan='3' class='small' align='right'>Linux:2.6.32.12-0.7.1.xs6.0.2.542.170665xen / xen: 4.1.2 / xapi: 1.3</td>          <td colspan='4' class='small' align='right'><?php echo $namelabel . " / " . $xenversion;?><br><?php echo $license;?></td>
236  </tr>  </tr>
237  <tr>  <tr>
238    <td width='150'></td>
239    <td width='150'></td>
240          <td width='150' align='right' class='small'><img src='gfx/icon-cpu.png'>          <td width='150' align='right' class='small'><img src='gfx/icon-cpu.png'>
241                  <img id='server_cpu_usage' src='usagebar.php?usage=12' width='102' height='16'><div id='server_cpu_usage_txt'>12%</div></td>                  <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>
242  <!--  
243          <td width='150' align='right' class='small'><img src='gfx/icon-memory.png'>          <td width='150' align='right' class='small'><img src='gfx/icon-memory.png'>
244                  <img id='server_memory_usage' src='usagebar.php?usage=81' width='102' height='16'><div id='server_memory_usage_txt'>4096/7912 MB</div></td>                  <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>
245  -->  <!--
246          <td width='150' align='right' class='small'><img src='gfx/icon-network.png'>          <td width='150' align='right' class='small'><img src='gfx/icon-network.png'>
247                  <img id='server_net_usage' src='usagebar.php?usage=41' width='102' height='16'><div id='server_net_usage_txt'>1%</div></td>                  <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>
248          <td width='150' align='right' class='small'><img src='gfx/icon-disk.png'>          <td width='150' align='right' class='small'><img src='gfx/icon-disk.png'>
249                  <img id='server_disk_usage' src='usagebar.php?usage=41' width='102' height='16'><div id='server_memory_usage_txt'>89.3/405.5 GB</div></td>                  <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>
   
250          </td>          </td>
251    -->
252  </tr></table>  </tr></table>
253    
254    
# Line 150  foreach($vms_array as $vm) { Line 261  foreach($vms_array as $vm) {
261          }          }
262    
263          $name = $vm["name_label"];          $name = $vm["name_label"];
264            $description = $vm["name_description"];
265          $uuid = $vm["uuid"];          $uuid = $vm["uuid"];
266          $state = $vm["power_state"] ;          $state = $vm["power_state"] ;
267          $memory = $vm['memory_target'];          $memory = $vm['memory_target'];
268          $harddrive_size = 0;          $harddrive_size = 0;
269          $cpu_count = $vm["VCPUs_max"];          $cpu_count = $vm["VCPUs_max"];
270    
271            $clean_name = str_replace(" ", "_", $name);
272            $clean_name = str_replace(".", "_", $clean_name);
273            
274    
275          foreach ($vm["VBDs"] as $vbds) {          foreach ($vm["VBDs"] as $vbds) {
276                  $vbd = $xenserver->VBD__get_record($vbds);                  $vbd = $xenserver->VBD__get_record($vbds);
277                  if ($vbd["type"] == 'Disk') {                  if ($vbd["type"] == 'Disk') {
# Line 164  foreach($vms_array as $vm) { Line 280  foreach($vms_array as $vm) {
280                  }                  }
281          }          }
282    
         $vps_topbg = 'vps_topyellow.png';  
   
         if ($state == "Running") {  
                 $vps_topbg = 'vps_topgreen.png';  
         } else if ($state == "Halted") {  
                 $vps_topbg = 'vps_topred.png';  
         }  
   
         $network = "";  
         if ( $vm["power_state"] == "Running" && $vm["guest_metrics"] != "OpaqueRef:NULL" ) {  
                 $guest_metrics = $xenserver->VM_guest_metrics__get_record( $vm["guest_metrics"] );  
                 $network = "(IP: " . implode( ",",  $guest_metrics["networks"]) . ")";  
         } else {  
                 $guest_metrics = Array() ;  
         }  
   
283    
         $url = "";  
         $session = "";  
         foreach($vm["consoles"] as $conref) {  
                 $con = $xenserver->console__get_record( $conref );  
                 //var_dump($con);  
   
                 if ($con["protocol"] == "rfb") {  
                         $url = urlencode( $con["location"] );  
                         $session = $xenserver->get_id();  
                 }  
         }  
284                    
   
   
   
 //      echo "<a href='#' onclick=\"loadvm('$uuid');\">$name</a><br>\n";  
285  ?>  ?>
286          <!-- MACHINE -->          <!-- MACHINE -->
287          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='<?php echo $name;?>'>          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>
288                  <tr background='gfx/vps_topbg.png'>                  <tr background='gfx/vps_topbg.png'  >
289                          <td width='10' background='gfx/<?php echo $vps_topbg; ?>' class='small'>&nbsp;</td>                          <td width='10' class='small state'>&nbsp;</td>
290                          <td colspan='2' class='small'><b><?php echo $name; ?></b></td>                          <td colspan='3' class='small' title='<?php echo $description;?>'><b><?php echo $name; ?></b><span class='os'></span></td>
291                          <td colspan='2' class='small' align='right'>                          <td colspan='1' class='small' align='right'>
292                                  <?php echo $network;?>                                  <span class='network'></span>
293                                  <?php                                  <a href='#' style='display:none;' class='console'>
294                                  if ($url != "") {                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
295                                          echo "<a href='#' onclick=\"console('<?php echo $url;?>','<?php echo $session;?>')\"><img src='gfx/icon-terminal.png' style='vertical-align: middle;'></a>";                                  </a>
                                 }  
                                 ?>  
296                          </td>                          </td>
297                  </tr>                  </tr>
298    
# Line 217  foreach($vms_array as $vm) { Line 300  foreach($vms_array as $vm) {
300                  <td></td>                  <td></td>
301    
302                  <td width='150' class='small'>                  <td width='150' class='small'>
303                          <?php                          <span class="actionstop" style='display:none'>
304                          if ($state == "Running") {                                  start |
305                                  echo "start | ";                                  <a href='#' onclick="doAction('shutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >stop</a> |
306                                  echo "<a href='#' onclick=\"doAction('shutdown','$uuid')\">stop</a> | ";                                  <a href='#' onclick="doAction('hardshutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >force shutdown</a>
307                                  echo "<a href='#' onclick=\"doAction('hardshutdown','$uuid')\">force shutdown</a>";                          </span>
308                          } else {                          
309                                  echo "<a href='#' onclick=\"doAction('start','$uuid')\">start</a> | ";                          <span class="actionstart">                      
310                                  echo "stop | ";                                  <a href='#' onclick="doAction('start','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >start</a> |
311                                  echo "force shutdown";                                  stop |
312                          }                                  force shutdown
313                          ?>                          </span>
314    
315                  </td>                  </td>
316    
317                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small' valign='top'>
318                            <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='cpu_graph'><br>
319                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>
320                          <span id='vps_cpu_usage_txt_UID'><?php echo $cpu_count; ?> VCPU</span>                          <span id='vps_cpu_usage_txt_UID'><?php echo $cpu_count; ?> VCPU</span>
321                  </td>                  </td>
322                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small'>
323                            <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='mem_graph'><br>
324                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>
325                          <span id='vps_memory_usage_txt_UID'><?php echo format_memory($memory); ?></span>                          <span id='vps_memory_usage_txt_UID'><?php echo format_memory($memory); ?></span>
326                  </td>                  </td>
# Line 245  foreach($vms_array as $vm) { Line 330  foreach($vms_array as $vm) {
330                          <span id='vps_net_usage_txt_UID'>na</span>                          <span id='vps_net_usage_txt_UID'>na</span>
331                  </td>                  </td>
332  -->  -->
333                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small' valign='bottom'>
334                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>
335                          <span id='vps_disk_usage_txt_UID'><?php echo format_storage($harddrive_size); ?></span>                          <span id='vps_disk_usage_txt_UID'><?php echo format_storage($harddrive_size); ?></span>
336                  </td>                  </td>
337                  </tr>                  </tr>
338                    
339    
340          </table>          </table>
341          <!-- MACHINE END -->          <!-- MACHINE END -->

Legend:
Removed from v.1882  
changed lines
  Added in v.1903

  ViewVC Help
Powered by ViewVC 1.1.20