mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
$scale_min = 0;
 | 
						|
 | 
						|
require 'includes/graphs/common.inc.php';
 | 
						|
 | 
						|
$ceph_pool_rrd = ceph_rrd('df');
 | 
						|
 | 
						|
if (rrdtool_check_rrd_exists($ceph_pool_rrd)) {
 | 
						|
    $rrd_filename = $ceph_pool_rrd;
 | 
						|
}
 | 
						|
 | 
						|
$ds = 'objects';
 | 
						|
 | 
						|
$colour_area = 'EEEEEE';
 | 
						|
$colour_line = '36393D';
 | 
						|
 | 
						|
$colour_area_max = 'FFEE99';
 | 
						|
 | 
						|
$unit_text = 'Objects';
 | 
						|
 | 
						|
require 'includes/graphs/generic_simplex.inc.php';
 |