2009-05-11 13:58:05 +00:00
< ? php // vim:fenc=utf-8:filetype=php:ts=4
$temp = mysql_result ( mysql_query ( " select count(*) from temperature WHERE temp_host = ' " . $device [ 'device_id' ] . " ' " ), 0 );
$storage = mysql_result ( mysql_query ( " select count(*) from storage WHERE host_id = ' " . $device [ 'device_id' ] . " ' " ), 0 );
$cemp = mysql_result ( mysql_query ( " select count(*) from cempMemPool WHERE device_id = ' " . $device [ 'device_id' ] . " ' " ), 0 );
2009-11-10 14:15:32 +00:00
$cmp = mysql_result ( mysql_query ( " select count(*) from cmpMemPool WHERE device_id = ' " . $device [ 'device_id' ] . " ' " ), 0 );
2009-05-11 13:58:05 +00:00
$cpm = mysql_result ( mysql_query ( " select count(*) from cpmCPU WHERE device_id = ' " . $device [ 'device_id' ] . " ' " ), 0 );
2009-11-09 15:52:04 +00:00
$hrprocessor = mysql_result ( mysql_query ( " select count(*) from hrDevice WHERE device_id = ' " . $device [ 'device_id' ] . " ' AND `hrDeviceType` = 'hrDeviceProcessor' " ), 0 );
2009-05-11 13:58:05 +00:00
2010-01-09 02:05:47 +00:00
if ( $temp ) { $datas [] = 'temp' ; }
if ( $storage ) { $datas [] = 'storage' ; }
if ( $cemp ) { $datas [] = 'cemp' ; }
if ( $cpm ) { $datas [] = 'cpm' ; }
if ( $cmp ) { $datas [] = 'cmp' ; }
if ( $hrprocessor ) { $datas [] = 'hrprocessors' ; }
2009-11-09 15:52:04 +00:00
2009-05-11 13:58:05 +00:00
$type_text [ 'temp' ] = " Temperatures " ;
2009-11-10 14:15:32 +00:00
$type_text [ 'cmp' ] = " Memory Pools " ;
$type_text [ 'cemp' ] = " Memory Enh Pools " ;
2009-05-11 13:58:05 +00:00
$type_text [ 'cpm' ] = " Processor Usage " ;
$type_text [ 'storage' ] = " Disk Usage " ;
2009-11-09 15:52:04 +00:00
$type_text [ 'hrprocessors' ] = " Processor Usage " ;
2009-05-11 13:58:05 +00:00
2010-01-09 02:05:47 +00:00
/*
2009-08-07 16:10:52 +00:00
echo ( " <div style='margin:auto; text-align: center; margin-top: 0px; margin-bottom: 10px;'>
< b class = 'rounded' >
2010-01-09 00:17:02 +00:00
< b class = 'rounded1' ></ b >
< b class = 'rounded2' ></ b >
2009-08-07 16:10:52 +00:00
< b class = 'rounded3' ></ b >
< b class = 'rounded4' ></ b >
< b class = 'rounded5' ></ b ></ b >
< div class = 'roundedfg' style = 'padding: 0px 5px;' >
< div style = 'margin: auto; text-align: left; padding: 2px 5px; padding-left: 11px; clear: both; display:block; height:20px;' >
" );
2010-01-09 02:05:47 +00:00
*/
2009-08-07 16:10:52 +00:00
2010-01-09 02:05:47 +00:00
print_optionbar_start ();
unset ( $sep );
foreach ( $datas as $type ) {
if ( ! $_GET [ 'opta' ]) { $_GET [ 'opta' ] = $type ; }
echo ( $sep );
if ( $_GET [ 'opta' ] == $type ) { echo ( " <strong> " ); }
echo ( " <a href=' " . $config [ 'base_url' ] . " /device/ " . $device [ 'device_id' ] . " /health/ " . $type . " /'> " . $type_text [ $type ] . " </a> \n " );
if ( $_GET [ 'opta' ] == $type ) { echo ( " </strong> " ); }
$sep = ' | ' ;
}
unset ( $sep );
2009-08-07 16:10:52 +00:00
2010-01-09 02:05:47 +00:00
print_optionbar_end ();
2009-05-11 13:58:05 +00:00
2010-01-09 02:05:47 +00:00
if ( is_file ( " pages/device/health/ " . mres ( $_GET [ 'opta' ]) . " .inc.php " )) { include ( " pages/device/health/ " . mres ( $_GET [ 'opta' ]) . " .inc.php " ); }
2009-05-11 13:58:05 +00:00
?>