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

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

web/addons/job_monarch/conf.php:

  • renamed TARCHD to JOB_ARCHIVE
  • added options: JOB_ARCHIVE_DIR, RRDTOOL

web/addons/job_monarch/overview.php:

  • renamed TARCHD to JOB_ARCHIVE

web/addons/job_monarch/index.php:

  • renamed TARCHD to JOB_ARCHIVE

web/addons/job_monarch/libtoga.php:

  • added usage of options: JOB_ARCHIVE_DIR, RRDTOOL
File size: 732 bytes
Line 
1<?php
2// Show hosts in a jobview by default?
3//
4$default_showhosts = 1;
5
6// Path to Ganglia's web frontend root
7//
8$GANGLIA_PATH = "/var/www/ganglia";
9
10// Max size of small clusterimage
11// (250 pixels is same width as Ganglia's pie chart)
12//
13$SMALL_CLUSTERIMAGE_MAXWIDTH = 250;
14
15// The size of a single node in the small clusterimage
16//
17$SMALL_CLUSTERIMAGE_NODEWIDTH = 11;
18
19// How to mark nodes with a job in clusterimage
20//
21$JOB_NODE_MARKING = "J";
22
23// XML Datasource for Toga
24// by default localhost's gmetad
25//
26$DATA_SOURCE = '127.0.0.1:8651';
27
28// Is there a jobarchive?
29//
30$JOB_ARCHIVE = 1;
31
32// Path to the job archive
33//
34$JOB_ARCHIVE_DIR = '/data/jobarch/rrds';
35
36// Path to rrdtool binary
37//
38$RRDTOOL = '/usr/bin/rrdtool';
39
40?>
Note: See TracBrowser for help on using the repository browser.