/[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 1955 by torben, Mon Mar 25 20:27:58 2013 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>  
50    <link rel="stylesheet" type="text/css" href="jquery/theme/jquery-ui.css">
51    
52    <script type='text/javascript' src="jquery/jquery-1.9.1.min.js"></script>
53    <script type='text/javascript' src="jquery/jquery-ui-1.10.2.min.js"></script>
54    
55  <script type='text/javascript'>  <script type='text/javascript'>
56  $(document).ready( function() {  $(document).ready( function() {
57          loadServer();          setInterval(refreshData, 60000);        
58            refreshData();
59            $('.console').click( function() {
60                    var session = $(this).data('session');
61                    var conurl = $(this).data('conurl');
62                    var name = $(this).data('name');
63                    console(conurl,session,name);
64            });
65    
66            $('#logo').click( function() {
67                    refreshData();
68            });
69  });  });
70    
71  function doAction(action, uuid) {  function refreshData() {
72            $("#logo").hide();      
73            $.get('ajaxdata.php', function(xml) {
74                    $(xml).find('host').each(function() {
75                            var memtotal = $(this).find('memtotal').text();
76                            var memfree = $(this).find('memfree').text();  
77                            var cpuavg = $(this).find('cpuavg').text();
78    
79                            memtotal = Math.round ( memtotal / (1024*1024) );
80                            memfree = Math.round ( memfree / (1024*1024) );
81                            var memused = memtotal - memfree;
82                            var mem_percentage = Math.round( (memused/memtotal) * 100);
83    
84                            //alert(memused + ' ' + mem_percentage);
85    
86                            $('#server_memory_usage').attr('src', 'usagebar.php?usage=' + mem_percentage);
87                            $('#server_memory_usage').attr('alt', mem_percentage + '%');
88                            $('#server_memory_usage').attr('title', mem_percentage + '%');
89                            $('#server_memory_usage_txt').text( memused + '/' + memtotal + 'MB');
90    
91    
92                            $('#server_cpu_usage').attr('src', 'usagebar.php?usage=' + cpuavg);
93                            $('#server_cpu_usage').attr('alt', cpuavg + '%');
94                            $('#server_cpu_usage').attr('title', cpuavg + '%');
95                            $('#server_cpu_usage_txt').text( cpuavg+ '%');
96                    });
97                    $(xml).find('vm').each(function() {
98                            var name = $(this).find('name').text();
99                            var state = $(this).find('state').text();
100                            var network = $(this).find('network').text();
101                            var state = $(this).find('state').text();
102                            var conurl = $(this).find('conurl').text();
103                            var session = $(this).find('session').text();
104                            var os = $(this).find('os').text();
105                            var guestversion = $(this).find('guestversion').text();
106                            var cpuavg = $(this).find('cpuavg').text();
107                            var curmem = $(this).find('curmem').text();
108                            var maxmem = $(this).find('maxmem').text();
109    
110                            var mempercent = Math.round( (curmem*100) / maxmem );
111    
112                            name = name.replace(" ", "_");
113                            name = name.replace(".", "_");
114                            
115                            var id = "#vm_" + name;
116    
117                            var vm = $(id);                
118    
119                            if (guestversion != '') {
120                                    os += ' Guest Tools: ' + guestversion;
121                            }
122    
123                            vm.find('.vps_memory_usage_txt_UID').text( maxmem + " MB");
124    
125                            if (state == "Running") {
126                                    vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");
127                                    vm.find('.network').show();
128                                    vm.find('.network').text( '(IP: ' + network + ')' );
129                                    vm.find('.console').show();
130                                    vm.find('.console').data('conurl', conurl);
131                                    vm.find('.console').data('session', session);
132                                    vm.find('.console').data('name', name);
133                                    vm.find('.actionstop').show();
134                                    vm.find('.actionstart').hide();
135                                    vm.find('.os').text(' - ' + os);
136    
137    
138                                    vm.find('.cpu_graph').show();
139                                    vm.find('.cpu_graph').attr('src', 'usagebar.php?usage=' + cpuavg);
140                                    vm.find('.cpu_graph').attr('title',  cpuavg + '%');
141    
142                                    vm.find('.mem_graph').show();
143                                    vm.find('.mem_graph').attr('src', 'usagebar.php?usage=' + mempercent);
144                                    vm.find('.mem_graph').attr('title',  curmem + ' / ' + maxmem + ' MB' );
145                            } else {
146                                    if (state == "Halted") {
147                                            vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
148                                    } else {
149                                            vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
150                                    }
151                                    vm.find('.os').text('');
152    
153                                    vm.find('.network').hide();
154                                    vm.find('.console').hide();
155                                    vm.find('.actionstop').hide();
156                                    vm.find('.actionstart').show();
157                                    vm.find('.cpu_graph').hide();
158                                    vm.find('.mem_graph').hide();
159                            }
160                            
161                    });
162                    $('#logo').show();
163           });
164    }
165    
166    function doAction(action, uuid, vm) {
167            var val="";
168    
169          var key = prompt("Key");          var key = prompt("Key");
170          if (key == "" || key == null) {          if (key == "" || key == null) {
171                  return;                  return;
172          }          }
173          document.body.style.cursor = 'wait';          document.body.style.cursor = 'wait';
174            $('#vm_' + vm).find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
175    
176          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;          if (action == "setMemory") {
177                    val = prompt("Set memory target");
178                    if (val == "" || val == null) {
179                            alert("" + val);
180                            return;
181                    }
182            }
183    
184            var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key + "&val=" + val;;
185          var response = $.get(url, function(data) {          var response = $.get(url, function(data) {
186                  alert(data);                  if (data != 'OK') {
187                  document.body.style.cursor = 'default'                          alert(data);
                 if (data == "OK") {  
                         window.location.reload();  
188                  }                  }
189                    document.body.style.cursor = 'default'
190    
191                    refreshData();
192          });          });
193  }  }
194    
195  function console(url, session) {  function console(url, session, name) {
196          if (url == '')          if (url == '')
197                  return;                  return;
198    
# Line 67  function console(url, session) { Line 200  function console(url, session) {
200          if (key == "" || key == null) {          if (key == "" || key == null) {
201                  return;                  return;
202          }          }
203          var url = "console.php?url=" + url + "&session=" + session + "&key=" + key;          var url = "console.php?url=" + url + "&session=" + session + "&key=" + key + "&name=" + name;
204    
205          //window.location = url;          //window.location = url;
206          //$('#mainwindow').load(url);          //$('#mainwindow').load(url);
207          window.open(url);          window.open(url);
208  }  }
209    
 function loadServer() {  
         $('#mainwindow').load('server.php');  
 }  
210    
 function loadvm(uuid) {  
         $('#mainwindow').load('vm.php?uuid=' + uuid );  
 }  
211    
212  </script>  </script>
213    
# Line 122  body { Line 249  body {
249    
250  <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'>
251  <tr>  <tr>
252          <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>
253          <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>
254  </tr>  </tr>
255  <tr>  <tr>
256    <td width='150'></td>
257    <td width='150'></td>
258          <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'>
259                  <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>
260  <!--  
261          <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'>
262                  <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>
263  -->  <!--
264          <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'>
265                  <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>
266          <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'>
267                  <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>
   
268          </td>          </td>
269    -->
270  </tr></table>  </tr></table>
271    
272    
# Line 150  foreach($vms_array as $vm) { Line 279  foreach($vms_array as $vm) {
279          }          }
280    
281          $name = $vm["name_label"];          $name = $vm["name_label"];
282            $description = $vm["name_description"];
283          $uuid = $vm["uuid"];          $uuid = $vm["uuid"];
284          $state = $vm["power_state"] ;          $state = $vm["power_state"] ;
285          $memory = $vm['memory_target'];          $memory = $vm['memory_target'];
286          $harddrive_size = 0;          $harddrive_size = 0;
287          $cpu_count = $vm["VCPUs_max"];          $cpu_count = $vm["VCPUs_max"];
288    
289            $clean_name = str_replace(" ", "_", $name);
290            $clean_name = str_replace(".", "_", $clean_name);
291            
292    
293          foreach ($vm["VBDs"] as $vbds) {          foreach ($vm["VBDs"] as $vbds) {
294                  $vbd = $xenserver->VBD__get_record($vbds);                  $vbd = $xenserver->VBD__get_record($vbds);
295                  if ($vbd["type"] == 'Disk') {                  if ($vbd["type"] == 'Disk') {
# Line 164  foreach($vms_array as $vm) { Line 298  foreach($vms_array as $vm) {
298                  }                  }
299          }          }
300    
         $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() ;  
         }  
   
301    
         $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();  
                 }  
         }  
302                    
   
   
   
 //      echo "<a href='#' onclick=\"loadvm('$uuid');\">$name</a><br>\n";  
303  ?>  ?>
304          <!-- MACHINE -->          <!-- MACHINE -->
305          <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;?>'>
306                  <tr background='gfx/vps_topbg.png'>                  <tr background='gfx/vps_topbg.png'  >
307                          <td width='10' background='gfx/<?php echo $vps_topbg; ?>' class='small'>&nbsp;</td>                          <td width='10' class='small state'>&nbsp;</td>
308                          <td colspan='2' class='small'><b><?php echo $name; ?></b></td>                          <td colspan='2' class='small' title='<?php echo $description;?>'><b><?php echo $name; ?></b><span class='os'></span></td>
309                          <td colspan='2' class='small' align='right'>                          <td colspan='2' class='small' align='right'>
310                                  <?php echo $network;?>                                  <span class='network'></span>
311                                  <?php                                  <a href='#' style='display:none;' class='console'>
312                                  if ($url != "") {                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
313                                          echo "<a href='#' onclick=\"console('<?php echo $url;?>','<?php echo $session;?>')\"><img src='gfx/icon-terminal.png' style='vertical-align: middle;'></a>";                                  </a>
                                 }  
                                 ?>  
314                          </td>                          </td>
315                  </tr>                  </tr>
316    
# Line 217  foreach($vms_array as $vm) { Line 318  foreach($vms_array as $vm) {
318                  <td></td>                  <td></td>
319    
320                  <td width='150' class='small'>                  <td width='150' class='small'>
321                          <?php                          <span class="actionstop" style='display:none'>
322                          if ($state == "Running") {                                  start |
323                                  echo "start | ";                                  <a href='#' onclick="doAction('shutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >stop</a> |
324                                  echo "<a href='#' onclick=\"doAction('shutdown','$uuid')\">stop</a> | ";                                  <a href='#' onclick="doAction('hardshutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >force shutdown</a> |
325                                  echo "<a href='#' onclick=\"doAction('hardshutdown','$uuid')\">force shutdown</a>";                                  set memory
326                          } else {                          </span>
327                                  echo "<a href='#' onclick=\"doAction('start','$uuid')\">start</a> | ";                          
328                                  echo "stop | ";                          <span class="actionstart">                      
329                                  echo "force shutdown";                                  <a href='#' onclick="doAction('start','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >start</a> |
330                          }                                  stop |
331                          ?>                                  force shutdown |
332    
333                                    <a href='#' onclick="doAction('setMemory','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >set memory</a>
334                            </span>
335    
336                  </td>                  </td>
337    
338                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small' valign='top'>
339                            <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='cpu_graph'><br>
340                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>
341                          <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>
342                  </td>                  </td>
343                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small'>
344                            <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='mem_graph'><br>
345                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>
346                          <span id='vps_memory_usage_txt_UID'><?php echo format_memory($memory); ?></span>                          <span class='vps_memory_usage_txt_UID'><?php echo format_memory($memory); ?></span>
347                  </td>                  </td>
348  <!--  <!--
349                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small'>
# Line 245  foreach($vms_array as $vm) { Line 351  foreach($vms_array as $vm) {
351                          <span id='vps_net_usage_txt_UID'>na</span>                          <span id='vps_net_usage_txt_UID'>na</span>
352                  </td>                  </td>
353  -->  -->
354                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small' valign='bottom'>
355                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>
356                          <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>
357                  </td>                  </td>
358                  </tr>                  </tr>
359                    
360    
361          </table>          </table>
362          <!-- MACHINE END -->          <!-- MACHINE END -->

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

  ViewVC Help
Powered by ViewVC 1.1.20