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
Line 
1<?php
2// Show hosts in a jobview by default?
3//
4$default_showhosts = 1;
5
6// Stop displaying archive search results after SEARCH_RESULT_LIMIT
7//
8$SEARCH_RESULT_LIMIT = 20;
9
10// Show the column job attribute 'requested memory'?
11//
12$COLUMN_REQUESTED_MEMORY = 0;
13
14// Show the column job attribute 'queued' (since)?
15//
16$COLUMN_QUEUED = 1;
17
18// Show the column job attribute 'nodes' hostnames?
19//
20$COLUMN_NODES = 1;
21
22// Path to Ganglia's web frontend root
23//
24$GANGLIA_PATH = "/var/www/ganglia";
25
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
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
39// How to mark nodes with a job in clusterimage
40//
41$JOB_NODE_MARKING = "J";
42
43// XML Datasource for Job Monarch
44// by default localhost's gmetad
45// [syntax: <ip>:<port>]
46//
47$DATA_SOURCE = '127.0.0.1:8651';
48
49// Is there a jobarchive?
50//
51$JOB_ARCHIVE = 1;
52
53// Path to the job archive rrd files
54//
55$JOB_ARCHIVE_DIR = "/data/gfs/jobarch/rrds";
56
57// Location of the job archive database
58// [syntax: <ip>/<dbase>]
59//
60$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
61
62// Path to rrdtool binary
63//
64$RRDTOOL = "/usr/bin/rrdtool";
65?>
Note: See TracBrowser for help on using the repository browser.