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
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
[110]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
[111]23// How to mark nodes with a job in clusterimage
24//
[115]25$JOB_NODE_MARKING = "J";
[111]26
[219]27// XML Datasource for Job Monarch
[110]28// by default localhost's gmetad
[207]29// [syntax: <ip>:<port>]
[110]30//
[163]31$DATA_SOURCE = '127.0.0.1:8651';
[110]32
[129]33// Is there a jobarchive?
34//
[206]35$JOB_ARCHIVE = 1;
[129]36
[207]37// Path to the job archive rrd files
[206]38//
[207]39$JOB_ARCHIVE_DIR = "/data/jobarch/rrds";
[206]40
[207]41// Location of the job archive database
42// [syntax: <ip>/<dbase>]
43//
44$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
45
[206]46// Path to rrdtool binary
47//
[207]48$RRDTOOL = "/usr/bin/rrdtool";
[110]49?>
Note: See TracBrowser for help on using the repository browser.