/[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 1888 by torben, Sat Dec 1 11:27:10 2012 UTC revision 1900 by torben, Mon Dec 10 14:58:53 2012 UTC
# Line 40  $license = "License: " . $host["license_ Line 40  $license = "License: " . $host["license_
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'>
# Line 63  $(document).ready( function() { Line 64  $(document).ready( function() {
64  });  });
65    
66  function refreshData() {  function refreshData() {
67            $("#logo").hide();      
68          $.get('ajaxdata.php', function(xml) {          $.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() {                  $(xml).find('vm').each(function() {
93                          var name = $(this).find('name').text();                          var name = $(this).find('name').text();
94                          var state = $(this).find('state').text();                          var state = $(this).find('state').text();
# Line 72  function refreshData() { Line 97  function refreshData() {
97                          var conurl = $(this).find('conurl').text();                          var conurl = $(this).find('conurl').text();
98                          var session = $(this).find('session').text();                          var session = $(this).find('session').text();
99                          var os = $(this).find('os').text();                          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(" ", "_");                          name = name.replace(" ", "_");
108                          name = name.replace(".", "_");                          name = name.replace(".", "_");
# Line 80  function refreshData() { Line 111  function refreshData() {
111    
112                          var vm = $(id);                                          var vm = $(id);                
113    
114                            if (guestversion != '') {
115                                    os += ' Guest Tools: ' + guestversion;
116                            }
117    
118                          if (state == "Running") {                          if (state == "Running") {
119                                  vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");                                  vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");
120                                  vm.find('.network').show();                                  vm.find('.network').show();
# Line 90  function refreshData() { Line 125  function refreshData() {
125                                  vm.find('.actionstop').show();                                  vm.find('.actionstop').show();
126                                  vm.find('.actionstart').hide();                                  vm.find('.actionstart').hide();
127                                  vm.find('.os').text(' - ' + os);                                  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 {                          } else {
138                                  if (state == "Halted") {                                  if (state == "Halted") {
139                                          vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");                                          vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
140                                  } else {                                  } else {
141                                          vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");                                          vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
142                                  }                                  }
143                                    vm.find('.os').text('');
144    
145                                  vm.find('.network').hide();                                  vm.find('.network').hide();
146                                  vm.find('.console').hide();                                  vm.find('.console').hide();
147                                  vm.find('.actionstop').hide();                                  vm.find('.actionstop').hide();
148                                  vm.find('.actionstart').show();                                  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    
# Line 183  body { Line 232  body {
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' id='logo'></td>          <td rowspan='2' width='160'><img src='gfx/citrix-logo.png' id='logo'></td>
235          <td colspan='3' class='small' align='right'><?php echo $xenversion;?><br><?php echo $license;?></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' align='right' class='small'><img src='gfx/icon-cpu.png'>          <td width='150' align='right' class='small'><img src='gfx/icon-cpu.png'>
239                  <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>
240  <!--  
241          <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'>
242                  <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>
243  -->  
244          <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'>
245                  <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>
246          <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'>
247                  <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>
248    
249          </td>          </td>
250  </tr></table>  </tr></table>
# Line 210  foreach($vms_array as $vm) { Line 259  foreach($vms_array as $vm) {
259          }          }
260    
261          $name = $vm["name_label"];          $name = $vm["name_label"];
262            $description = $vm["name_description"];
263          $uuid = $vm["uuid"];          $uuid = $vm["uuid"];
264          $state = $vm["power_state"] ;          $state = $vm["power_state"] ;
265          $memory = $vm['memory_target'];          $memory = $vm['memory_target'];
# Line 235  foreach($vms_array as $vm) { Line 285  foreach($vms_array as $vm) {
285          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>
286                  <tr background='gfx/vps_topbg.png'  >                  <tr background='gfx/vps_topbg.png'  >
287                          <td width='10' class='small state'>&nbsp;</td>                          <td width='10' class='small state'>&nbsp;</td>
288                          <td colspan='2' class='small'><b><?php echo $name; ?></b><span class='os'></span></td>                          <td colspan='3' class='small' title='<?php echo $description;?>'><b><?php echo $name; ?></b><span class='os'></span></td>
289                          <td colspan='2' class='small' align='right'>                          <td colspan='1' class='small' align='right'>
290                                  <span class='network'></span>                                  <span class='network'></span>
291                                  <a href='#' style='display:none;' class='console'>                                  <a href='#' style='display:none;' class='console'>
292                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
# Line 262  foreach($vms_array as $vm) { Line 312  foreach($vms_array as $vm) {
312    
313                  </td>                  </td>
314    
315                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small' valign='top'>
316                            <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='cpu_graph'><br>
317                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>
318                          <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>
319                  </td>                  </td>
320                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small'>
321                            <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='mem_graph'><br>
322                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>
323                          <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>
324                  </td>                  </td>
# Line 276  foreach($vms_array as $vm) { Line 328  foreach($vms_array as $vm) {
328                          <span id='vps_net_usage_txt_UID'>na</span>                          <span id='vps_net_usage_txt_UID'>na</span>
329                  </td>                  </td>
330  -->  -->
331                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small' valign='bottom'>
332                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>
333                          <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>
334                  </td>                  </td>
335                  </tr>                  </tr>
336                    
337    
338          </table>          </table>
339          <!-- MACHINE END -->          <!-- MACHINE END -->

Legend:
Removed from v.1888  
changed lines
  Added in v.1900

  ViewVC Help
Powered by ViewVC 1.1.20