source: trunk/web/addons/job_monarch/conf.php @ 219

Last change on this file since 219 was 219, checked in by bastiaans, 18 years ago

TODO:

  • updated

AUTHORS:

  • updated

jobmond/jobmond.py,
web/addons/job_monarch/libtoga.php:

  • renamed metric internals from TOGA to MONARCH

web/addons/job_monarch/conf.php:

  • renamed comment from Toga to Job Monarch
File size: 885 bytes
RevLine 
[110]1<?php
[129]2// Show hosts in a jobview by default?
3//
4$default_showhosts = 1;
[110]5
6// Path to Ganglia's web frontend root
7//
8$GANGLIA_PATH = "/var/www/ganglia";
9
10// Max size of small clusterimage
11// (250 pixels is same width as Ganglia's pie chart)
12//
13$SMALL_CLUSTERIMAGE_MAXWIDTH = 250;
14
15// The size of a single node in the small clusterimage
16//
17$SMALL_CLUSTERIMAGE_NODEWIDTH = 11;
18
[111]19// How to mark nodes with a job in clusterimage
20//
[115]21$JOB_NODE_MARKING = "J";
[111]22
[219]23// XML Datasource for Job Monarch
[110]24// by default localhost's gmetad
[207]25// [syntax: <ip>:<port>]
[110]26//
[163]27$DATA_SOURCE = '127.0.0.1:8651';
[110]28
[129]29// Is there a jobarchive?
30//
[206]31$JOB_ARCHIVE = 1;
[129]32
[207]33// Path to the job archive rrd files
[206]34//
[207]35$JOB_ARCHIVE_DIR = "/data/jobarch/rrds";
[206]36
[207]37// Location of the job archive database
38// [syntax: <ip>/<dbase>]
39//
40$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
41
[206]42// Path to rrdtool binary
43//
[207]44$RRDTOOL = "/usr/bin/rrdtool";
[110]45?>
Note: See TracBrowser for help on using the repository browser.