source: trunk/web/addons/toga/conf.php @ 135

Last change on this file since 135 was 129, checked in by bastiaans, 19 years ago

web/templates/toga/cluster_extra.tpl:

  • Renamed link to joblist

web/addons/toga/templates/header.tpl:

  • Inclusion to archivelink template

web/addons/toga/index.php:

  • Misc cleanup
  • Setup skeleton for search

web/addons/toga/overview.php:

  • Fixed showhosts bugs

web/addons/toga/conf.php:

  • Cleanup
  • Added TARCHD option for if a archive is present

web/addons/toga/libtoga.php:

  • Don't use Ganglia's get_context, it messes stuff up
File size: 594 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:8649';
27
28// Is there a jobarchive?
29//
30$TARCHD = 1;
31
32?>
Note: See TracBrowser for help on using the repository browser.