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

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

web/addons/job_monarch/conf.php:

  • added COLUMN_NODES option to display job node hostnames column

web/addons/job_monarch/search.php,
web/addons/job_monarch/overview.php:

  • added handling of COLUMN_NODES

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

  • added COLUMN_NODES to html
File size: 1.3 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
[299]18// Show the column job attribute 'nodes' hostnames?
19//
20$COLUMN_NODES = 1;
21
[110]22// Path to Ganglia's web frontend root
23//
24$GANGLIA_PATH = "/var/www/ganglia";
25
[246]26// Format of how to display a date and time in human readable format
27//
28$DATETIME_FORMAT = "%a %d %b %Y %H:%M:%S";
29
[110]30// Max size of small clusterimage
31// (250 pixels is same width as Ganglia's pie chart)
32//
33$SMALL_CLUSTERIMAGE_MAXWIDTH = 250;
34
35// The size of a single node in the small clusterimage
36//
37$SMALL_CLUSTERIMAGE_NODEWIDTH = 11;
38
[111]39// How to mark nodes with a job in clusterimage
40//
[115]41$JOB_NODE_MARKING = "J";
[111]42
[219]43// XML Datasource for Job Monarch
[110]44// by default localhost's gmetad
[207]45// [syntax: <ip>:<port>]
[110]46//
[163]47$DATA_SOURCE = '127.0.0.1:8651';
[110]48
[129]49// Is there a jobarchive?
50//
[206]51$JOB_ARCHIVE = 1;
[129]52
[207]53// Path to the job archive rrd files
[206]54//
[294]55$JOB_ARCHIVE_DIR = "/data/gfs/jobarch/rrds";
[206]56
[207]57// Location of the job archive database
58// [syntax: <ip>/<dbase>]
59//
60$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
61
[206]62// Path to rrdtool binary
63//
[207]64$RRDTOOL = "/usr/bin/rrdtool";
[110]65?>
Note: See TracBrowser for help on using the repository browser.