/[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 1889 by torben, Sat Dec 1 16:12:51 2012 UTC revision 1895 by torben, Sun Dec 9 19:57:00 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() {                  $(xml).find('host').each(function() {
70                          var memtotal = $(this).find('memtotal').text();                          var memtotal = $(this).find('memtotal').text();
71                          var memfree = $(this).find('memfree').text();                            var memfree = $(this).find('memfree').text();  
72                            var cpuavg = $(this).find('cpuavg').text();
73    
74                          memtotal = Math.round ( memtotal / (1024*1024) );                          memtotal = Math.round ( memtotal / (1024*1024) );
75                          memfree = Math.round ( memfree / (1024*1024) );                          memfree = Math.round ( memfree / (1024*1024) );
76                          var memused = memtotal - memfree;                          var memused = memtotal - memfree;
# Line 75  function refreshData() { Line 79  function refreshData() {
79                          //alert(memused + ' ' + mem_percentage);                          //alert(memused + ' ' + mem_percentage);
80    
81                          $('#server_memory_usage').attr('src', 'usagebar.php?usage=' + mem_percentage);                          $('#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');                          $('#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();
# Line 85  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 cpuavg = $(this).find('cpuavg').text();
101    
102                          name = name.replace(" ", "_");                          name = name.replace(" ", "_");
103                          name = name.replace(".", "_");                          name = name.replace(".", "_");
# Line 103  function refreshData() { Line 116  function refreshData() {
116                                  vm.find('.actionstop').show();                                  vm.find('.actionstop').show();
117                                  vm.find('.actionstart').hide();                                  vm.find('.actionstart').hide();
118                                  vm.find('.os').text(' - ' + os);                                  vm.find('.os').text(' - ' + os);
119    
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                                    vm.find('.mem_graph').show();
125                          } else {                          } else {
126                                  if (state == "Halted") {                                  if (state == "Halted") {
127                                          vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");                                          vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
# Line 113  function refreshData() { Line 132  function refreshData() {
132                                  vm.find('.console').hide();                                  vm.find('.console').hide();
133                                  vm.find('.actionstop').hide();                                  vm.find('.actionstop').hide();
134                                  vm.find('.actionstart').show();                                  vm.find('.actionstart').show();
135                                    vm.find('.cpu_graph').hide();
136                                    vm.find('.mem_graph').hide();
137                          }                          }
138                                                    
139                  })                  });
140                    $('#logo').show();
141         });         });
142  }  }
143    
# Line 196  body { Line 218  body {
218  <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'>
219  <tr>  <tr>
220          <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>
221          <td colspan='4' 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>
222  </tr>  </tr>
223  <tr>  <tr>
224          <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'>
225                  <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>
226    
227          <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'>
228                  <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>                  <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    
230          <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'>
231                  <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>
232          <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'>
233                  <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>
234    
235          </td>          </td>
236  </tr></table>  </tr></table>
# Line 275  foreach($vms_array as $vm) { Line 297  foreach($vms_array as $vm) {
297    
298                  </td>                  </td>
299    
300                  <td width='100' align='right' class='small'>                  <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                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>
303                          <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>
304                  </td>                  </td>
305                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small'>
306                            <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='mem_graph'><br>
307                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>
308                          <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>
309                  </td>                  </td>
# Line 289  foreach($vms_array as $vm) { Line 313  foreach($vms_array as $vm) {
313                          <span id='vps_net_usage_txt_UID'>na</span>                          <span id='vps_net_usage_txt_UID'>na</span>
314                  </td>                  </td>
315  -->  -->
316                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small' valign='top'>
317                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>                          <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>                          <span id='vps_disk_usage_txt_UID'><?php echo format_storage($harddrive_size); ?></span>
319                  </td>                  </td>
320                  </tr>                  </tr>
321                    
322    
323          </table>          </table>
324          <!-- MACHINE END -->          <!-- MACHINE END -->

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

  ViewVC Help
Powered by ViewVC 1.1.20