mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			307 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			307 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
require 'includes/graphs/common.inc.php';
 | 
						|
 | 
						|
$mysql_rrd = $config['rrd_dir'].'/'.$device['hostname'].'/app-mysql-'.$app['app_id'].'.rrd';
 | 
						|
 | 
						|
if (is_file($mysql_rrd)) {
 | 
						|
    $rrd_filename = $mysql_rrd;
 | 
						|
}
 | 
						|
 | 
						|
$multiplier = 8;
 | 
						|
 | 
						|
$ds_in  = 'BRd';
 | 
						|
$ds_out = 'BSt';
 | 
						|
 | 
						|
require 'includes/graphs/generic_data.inc.php';
 |