/[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 1889 by torben, Sat Dec 1 16:12:51 2012 UTC
# Line 64  $(document).ready( function() { Line 64  $(document).ready( function() {
64    
65  function refreshData() {  function refreshData() {
66          $.get('ajaxdata.php', function(xml) {          $.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                            memtotal = Math.round ( memtotal / (1024*1024) );
71                            memfree = Math.round ( memfree / (1024*1024) );
72                            var memused = memtotal - memfree;
73                            var mem_percentage = Math.round( (memused/memtotal) * 100);
74    
75                            //alert(memused + ' ' + mem_percentage);
76    
77                            $('#server_memory_usage').attr('src', 'usagebar.php?usage=' + mem_percentage);
78                            $('#server_memory_usage_txt').text( memused + '/' + memtotal + 'MB');
79                    });
80                  $(xml).find('vm').each(function() {                  $(xml).find('vm').each(function() {
81                          var name = $(this).find('name').text();                          var name = $(this).find('name').text();
82                          var state = $(this).find('state').text();                          var state = $(this).find('state').text();
# Line 102  function refreshData() { Line 115  function refreshData() {
115                                  vm.find('.actionstart').show();                                  vm.find('.actionstart').show();
116                          }                          }
117                                                    
118             })                  })
119         });         });
120  }  }
121    
# Line 183  body { Line 196  body {
196  <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'>
197  <tr>  <tr>
198          <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>
199          <td colspan='3' class='small' align='right'><?php echo $xenversion;?><br><?php echo $license;?></td>          <td colspan='4' class='small' align='right'><?php echo $xenversion;?><br><?php echo $license;?></td>
200  </tr>  </tr>
201  <tr>  <tr>
202          <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'>
203                  <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'><div id='server_cpu_usage_txt'>12%</div></td>
204  <!--  
205          <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'>
206                  <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'><div id='server_memory_usage_txt'>0/4 MB</div></td>
207  -->  
208          <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'>
209                  <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'><div id='server_net_usage_txt'>1%</div></td>
210          <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'>

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

  ViewVC Help
Powered by ViewVC 1.1.20