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

Last change on this file since 248 was 248, checked in by bastiaans, 18 years ago

web/addons/job_monarch/conf.php:

  • added SEARCH_RESULT_LIMIT option to prevent HUGE result lists

web/addons/job_monarch/libtoga.php:

  • added a resultcount
  • changed sql query to count first and limit the results

web/addons/job_monarch/search.php:

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