<?php 
/* 
 * Author: Md.Monjurul Hasan 
 * Date Created: 28-10-2008 
 * Last Modified: 28-10-2009 
   
 * Description - Config file for rrd data manipulation 
*/ 
$mrtg_config = array ( 
  'rrd_path'=>'rra', //set your rrd path - can be absolute  
  'data_souce_in'=> 'ds0', // data source names (these are default names for in and out values) 
  'data_souce_out'=> 'ds1', 
  'rrd_array'=>'test1,test2' //rrd file name without extension(.rrd) 
); 
 
 
 |