Changeset 686 for branches/0.3/web/addons
- Timestamp:
- 11/28/12 16:21:51 (10 years ago)
- Location:
- branches/0.3/web/addons/job_monarch
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.3/web/addons/job_monarch/conf.php
r614 r686 22 22 // Path to Ganglia's web frontend root 23 23 // 24 $GANGLIA_PATH = "/ var/www/test-ganglia";24 $GANGLIA_PATH = "/data/ganglia-web-current/"; 25 25 //$GANGLIA_PATH = "../.."; 26 26 … … 79 79 // Is there a jobarchive? 80 80 // 81 $JOB_ARCHIVE = true;81 $JOB_ARCHIVE = false; 82 82 83 83 // Path to the job archive rrd files -
branches/0.3/web/addons/job_monarch/index.php
r527 r686 23 23 */ 24 24 25 ini_set("memory_limit"," 100M");25 ini_set("memory_limit","500M"); 26 26 set_time_limit(0); 27 27 … … 40 40 41 41 global $GANGLIA_PATH; 42 chdir( $GANGLIA_PATH );42 //chdir( $GANGLIA_PATH ); 43 43 44 44 include_once "./class.TemplatePower.inc.php"; 45 chdir( $my_dir );45 //chdir( $my_dir ); 46 46 47 47 $httpvars = new HTTPVariables( $HTTP_GET_VARS, $_GET ); -
branches/0.3/web/addons/job_monarch/libtoga.php
r654 r686 85 85 $CLUSTER_CONFS = array(); 86 86 87 ini_set("memory_limit"," 1024000000");87 ini_set("memory_limit","500M"); 88 88 set_time_limit(0); 89 89 … … 106 106 chdir( $GANGLIA_PATH ); 107 107 108 include_once "./conf.php"; 108 //include_once "./conf.php"; 109 include_once "./eval_conf.php"; 109 110 include_once "./functions.php"; 110 111 include_once "./ganglia.php"; … … 822 823 if( !in_array( $node, $jobs[$jobid][$toganame] ) ) 823 824 { 824 $jobs[$jobid][$toganame][] = $node;825 array_push( $jobs[$jobid][$toganame], $node ); 825 826 } 826 827 }
Note: See TracChangeset
for help on using the changeset viewer.