Last change
on this file since 246 was
246,
checked in by bastiaans, 17 years ago
|
web/addons/job_monarch/conf.php:
web/addons/job_monarch/libtoga.php:
web/addons/job_monarch/search.php,
web/addons/job_monarch/overview.php:
- disable local makeDate, use from libtoga
web/addons/job_monarch/search.php
|
File size:
1.1 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 | // Format of how to display a date and time in human readable format |
---|
19 | // |
---|
20 | $DATETIME_FORMAT = "%a %d %b %Y %H:%M:%S"; |
---|
21 | |
---|
22 | // Max size of small clusterimage |
---|
23 | // (250 pixels is same width as Ganglia's pie chart) |
---|
24 | // |
---|
25 | $SMALL_CLUSTERIMAGE_MAXWIDTH = 250; |
---|
26 | |
---|
27 | // The size of a single node in the small clusterimage |
---|
28 | // |
---|
29 | $SMALL_CLUSTERIMAGE_NODEWIDTH = 11; |
---|
30 | |
---|
31 | // How to mark nodes with a job in clusterimage |
---|
32 | // |
---|
33 | $JOB_NODE_MARKING = "J"; |
---|
34 | |
---|
35 | // XML Datasource for Job Monarch |
---|
36 | // by default localhost's gmetad |
---|
37 | // [syntax: <ip>:<port>] |
---|
38 | // |
---|
39 | $DATA_SOURCE = '127.0.0.1:8651'; |
---|
40 | |
---|
41 | // Is there a jobarchive? |
---|
42 | // |
---|
43 | $JOB_ARCHIVE = 1; |
---|
44 | |
---|
45 | // Path to the job archive rrd files |
---|
46 | // |
---|
47 | $JOB_ARCHIVE_DIR = "/data/jobarch/rrds"; |
---|
48 | |
---|
49 | // Location of the job archive database |
---|
50 | // [syntax: <ip>/<dbase>] |
---|
51 | // |
---|
52 | $JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch"; |
---|
53 | |
---|
54 | // Path to rrdtool binary |
---|
55 | // |
---|
56 | $RRDTOOL = "/usr/bin/rrdtool"; |
---|
57 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.