mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	More mibs needed from http://www.ieee802.org/1/files/public/MIBs/ Updated mib names Updated poller function and siklu call Updates for Siklu detection Removed one graph not supported Added rfOperationalFrequency graph Removed modulation graph Work on siklu support Siklu packets supports Last updates for Siklu support Updated more siklu support
		
			
				
	
	
		
			16 lines
		
	
	
		
			589 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			589 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
include("includes/graphs/common.inc.php");
 | 
						|
 | 
						|
$rrdfilename  = $config['rrd_dir'] . "/".$device['hostname']."/siklu-wireless.rrd";
 | 
						|
 | 
						|
if (file_exists($rrdfilename)) {
 | 
						|
    $rrd_options .= " COMMENT:'dbm                        Now    Min     Max\\n'";
 | 
						|
    $rrd_options .= " DEF:rfAverageRssi=".$rrdfilename.":rfAverageRssi:AVERAGE ";
 | 
						|
    $rrd_options .= " LINE1:rfAverageRssi#CC0000:'RSSI                 ' ";
 | 
						|
    $rrd_options .= " GPRINT:rfAverageRssi:LAST:%3.2lf ";
 | 
						|
    $rrd_options .= " GPRINT:rfAverageRssi:MIN:%3.2lf ";
 | 
						|
    $rrd_options .= " GPRINT:rfAverageRssi:MAX:%3.2lf\\\l ";
 | 
						|
}
 | 
						|
 |