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

Last change on this file since 294 was 294, checked in by bastiaans, 17 years ago

web/addons/job_monarch/libtoga.php:

  • Fixed dbasename handling error

web/addons/job_monarch/conf.php:

  • Changed directory for testing
File size: 1.2 KB
RevLine 
[110]1<?php
[129]2// Show hosts in a jobview by default?
3//
4$default_showhosts = 1;
[110]5
[248]6// Stop displaying archive search results after SEARCH_RESULT_LIMIT
7//
8$SEARCH_RESULT_LIMIT = 20;
9
[241]10// Show the column job attribute 'requested memory'?
11//
12$COLUMN_REQUESTED_MEMORY = 0;
13
[242]14// Show the column job attribute 'queued' (since)?
15//
16$COLUMN_QUEUED = 1;
17
[110]18// Path to Ganglia's web frontend root
19//
20$GANGLIA_PATH = "/var/www/ganglia";
21
[246]22// Format of how to display a date and time in human readable format
23//
24$DATETIME_FORMAT = "%a %d %b %Y %H:%M:%S";
25
[110]26// Max size of small clusterimage
27// (250 pixels is same width as Ganglia's pie chart)
28//
29$SMALL_CLUSTERIMAGE_MAXWIDTH = 250;
30
31// The size of a single node in the small clusterimage
32//
33$SMALL_CLUSTERIMAGE_NODEWIDTH = 11;
34
[111]35// How to mark nodes with a job in clusterimage
36//
[115]37$JOB_NODE_MARKING = "J";
[111]38
[219]39// XML Datasource for Job Monarch
[110]40// by default localhost's gmetad
[207]41// [syntax: <ip>:<port>]
[110]42//
[163]43$DATA_SOURCE = '127.0.0.1:8651';
[110]44
[129]45// Is there a jobarchive?
46//
[206]47$JOB_ARCHIVE = 1;
[129]48
[207]49// Path to the job archive rrd files
[206]50//
[294]51$JOB_ARCHIVE_DIR = "/data/gfs/jobarch/rrds";
[206]52
[207]53// Location of the job archive database
54// [syntax: <ip>/<dbase>]
55//
56$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
57
[206]58// Path to rrdtool binary
59//
[207]60$RRDTOOL = "/usr/bin/rrdtool";
[110]61?>
Note: See TracBrowser for help on using the repository browser.