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

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

web/addons/job_monarch/conf.php:

  • added option COLUMN_REQUESTED_MEMORY to enable/disable showing req. mem

web/addons/job_monarch/version.php:

  • version increase to 0.1.1

web/addons/job_monarch/templates/overview.tpl:

  • req. mem column is now a template block
  • added template block for queued since column (not yet used)

web/addons/job_monarch/overview.php:

  • req. mem column will now only be displayed if enabled in conf.php

web/addons/job_monarch/footer.php:

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