mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			610 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			610 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
include("includes/graphs/common.inc.php");
 | 
						|
 | 
						|
//$rrd_options .= " -l 0 -E ";
 | 
						|
 | 
						|
$rrdfilename  = $config['rrd_dir'] . "/".$device['hostname']."/ubnt-airmax-mib.rrd";
 | 
						|
 | 
						|
if (file_exists($rrdfilename))
 | 
						|
{
 | 
						|
  $rrd_options .= " COMMENT:'                         Now   Min  Max\\n'";
 | 
						|
  $rrd_options .= " DEF:AirMaxCapacity=".$rrdfilename.":AirMaxCapacity:AVERAGE ";
 | 
						|
  $rrd_options .= " LINE1:AirMaxCapacity#CC0000:'Percent              ' ";
 | 
						|
  $rrd_options .= " GPRINT:AirMaxCapacity:LAST:%3.0lf ";
 | 
						|
  $rrd_options .= " GPRINT:AirMaxCapacity:MIN:%3.0lf ";
 | 
						|
  $rrd_options .= " GPRINT:AirMaxCapacity:MAX:%3.0lf\\\l ";
 | 
						|
}
 | 
						|
 |