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

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

web/addons/job_monarch/conf.php:

  • added COLUMN_QUEUED option

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

  • changed table spacing to more compact
  • added Queued column template blocks

web/addons/job_monarch/overview.php:

  • added queued column blocks
File size: 1.0 KB
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// Show the column job attribute 'queued' (since)?
11//
12$COLUMN_QUEUED = 1;
13
14// Path to Ganglia's web frontend root
15//
16$GANGLIA_PATH = "/var/www/ganglia";
17
18// Max size of small clusterimage
19// (250 pixels is same width as Ganglia's pie chart)
20//
21$SMALL_CLUSTERIMAGE_MAXWIDTH = 250;
22
23// The size of a single node in the small clusterimage
24//
25$SMALL_CLUSTERIMAGE_NODEWIDTH = 11;
26
27// How to mark nodes with a job in clusterimage
28//
29$JOB_NODE_MARKING = "J";
30
31// XML Datasource for Job Monarch
32// by default localhost's gmetad
33// [syntax: <ip>:<port>]
34//
35$DATA_SOURCE = '127.0.0.1:8651';
36
37// Is there a jobarchive?
38//
39$JOB_ARCHIVE = 1;
40
41// Path to the job archive rrd files
42//
43$JOB_ARCHIVE_DIR = "/data/jobarch/rrds";
44
45// Location of the job archive database
46// [syntax: <ip>/<dbase>]
47//
48$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
49
50// Path to rrdtool binary
51//
52$RRDTOOL = "/usr/bin/rrdtool";
53?>
Note: See TracBrowser for help on using the repository browser.