mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	git-svn-id: http://www.observium.org/svn/observer/trunk@765 61d68cd4-352d-0410-923a-c4978735b2b8
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| $query = mysql_query("SELECT * FROM `hrDevice` where `device_id` = '".mres($device_id)."' AND hrDeviceType = 'hrDeviceProcessor'");
 | |
| 
 | |
| $i=0;
 | |
| while($proc = mysql_fetch_array($query)) {
 | |
| 
 | |
|   $rrd_filename  = $config['rrd_dir'] . "/$hostname/" . safename("hrProcessor-" . $proc['hrDeviceIndex'] . ".rrd");
 | |
| 
 | |
|   if(is_file($rrd_filename)) {
 | |
| 
 | |
|     $descr = short_hrDeviceDescr($proc['hrDeviceDescr']);
 | |
|     $descr = str_replace(":", "\:", $descr);
 | |
| 
 | |
|     $rrd_list[$i]['filename'] = $rrd_filename;
 | |
|     $rrd_list[$i]['descr'] = $descr;
 | |
|     $rrd_list[$i]['rra'] = "usage";
 | |
|     $i++;
 | |
|   }
 | |
| }
 | |
| 
 | |
| $unit_text = "Load %";
 | |
| 
 | |
| $units='%';
 | |
| $total_units='%';
 | |
| $colours='mixed';
 | |
| 
 | |
| $scale_min = "0";
 | |
| $scale_max = "100";
 | |
| 
 | |
| $nototal = 1;
 | |
| 
 | |
| if ($rrd_list) {
 | |
| 
 | |
| include ("generic_multi_line.inc.php");
 | |
| 
 | |
| } else {
 | |
|   include("common.inc.php");
 | |
|   $rrd_filename = $config['rrd_dir'] . "/" . $hostname . "/" . "ucd_cpu.rrd";
 | |
|   $rrd_options .= " DEF:user=$rrd_filename:user:AVERAGE";
 | |
|   $rrd_options .= " DEF:nice=$rrd_filename:nice:AVERAGE";
 | |
|   $rrd_options .= " DEF:system=$rrd_filename:system:AVERAGE";
 | |
|   $rrd_options .= " DEF:idle=$rrd_filename:idle:AVERAGE";
 | |
|   $rrd_options .= " CDEF:total=user,nice,system,idle,+,+,+";
 | |
|   $rrd_options .= " CDEF:user_perc=user,total,/,100,*";
 | |
|   $rrd_options .= " CDEF:nice_perc=nice,total,/,100,*";
 | |
|   $rrd_options .= " CDEF:system_perc=system,total,/,100,*";
 | |
|   $rrd_options .= " CDEF:idle_perc=idle,total,/,100,*";
 | |
|   $rrd_options .= " COMMENT:Usage\ \ \ \ \ \ \ Current\ \ \ \ \ Average\ \ \ \ Maximum\\\\n";
 | |
|   $rrd_options .= " AREA:user_perc#c02020:user";
 | |
|   $rrd_options .= " GPRINT:user_perc:LAST:\ \ \ \ \ %5.2lf%%";
 | |
|   $rrd_options .= " GPRINT:user_perc:AVERAGE:\ \ \ %5.2lf%%";
 | |
|   $rrd_options .= " GPRINT:user_perc:MAX:\ \ \ %5.2lf%%\\\\n";
 | |
|   $rrd_options .= " AREA:nice_perc#008f00:nice:STACK";
 | |
|   $rrd_options .= " GPRINT:nice_perc:LAST:\ \ \ \ \ %5.2lf%%";
 | |
|   $rrd_options .= " GPRINT:nice_perc:AVERAGE:\ \ \ %5.2lf%%";
 | |
|   $rrd_options .= " GPRINT:nice_perc:MAX:\ \ \ %5.2lf%%\\\\n";
 | |
|   $rrd_options .= " AREA:system_perc#ea8f00:system:STACK";
 | |
|   $rrd_options .= " GPRINT:system_perc:LAST:\ \ \ %5.2lf%%";
 | |
|   $rrd_options .= " GPRINT:system_perc:AVERAGE:\ \ \ %5.2lf%%";
 | |
|   $rrd_options .= " GPRINT:system_perc:MAX:\ \ \ %5.2lf%%\\\\n";
 | |
|   $rrd_options .= " AREA:idle_perc#f5f5e5:idle:STACK";
 | |
|   $rrd_options .= " GPRINT:idle_perc:LAST:\ \ \ \ \ %5.2lf%%";
 | |
|   $rrd_options .= " GPRINT:idle_perc:AVERAGE:\ \ \ %5.2lf%%";
 | |
|   $rrd_options .= " GPRINT:idle_perc:MAX:\ \ \ %5.2lf%%\\\\n";
 | |
| 
 | |
| }
 | |
| 
 | |
| ?>
 |