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
RevLine 
[110]1<?php
[129]2// Show hosts in a jobview by default?
3//
4$default_showhosts = 1;
[110]5
[241]6// Show the column job attribute 'requested memory'?
7//
8$COLUMN_REQUESTED_MEMORY = 0;
9
[242]10// Show the column job attribute 'queued' (since)?
11//
12$COLUMN_QUEUED = 1;
13
[110]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
[111]27// How to mark nodes with a job in clusterimage
28//
[115]29$JOB_NODE_MARKING = "J";
[111]30
[219]31// XML Datasource for Job Monarch
[110]32// by default localhost's gmetad
[207]33// [syntax: <ip>:<port>]
[110]34//
[163]35$DATA_SOURCE = '127.0.0.1:8651';
[110]36
[129]37// Is there a jobarchive?
38//
[206]39$JOB_ARCHIVE = 1;
[129]40
[207]41// Path to the job archive rrd files
[206]42//
[207]43$JOB_ARCHIVE_DIR = "/data/jobarch/rrds";
[206]44
[207]45// Location of the job archive database
46// [syntax: <ip>/<dbase>]
47//
48$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
49
[206]50// Path to rrdtool binary
51//
[207]52$RRDTOOL = "/usr/bin/rrdtool";
[110]53?>
Note: See TracBrowser for help on using the repository browser.