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

Last change on this file since 119 was 115, checked in by bastiaans, 19 years ago

toga/conf.php, toga/libtoga.php:

  • Will now use a 'J' marking for all nodes with a running job Not depending on number of cpus in use anymore

toga/overview.php:

  • Fixed makeTime()
File size: 642 bytes
Line 
1<?php
2
3// Path to Ganglia's web frontend root
4//
5$GANGLIA_PATH = "/var/www/ganglia";
6
7// Max size of small clusterimage
8// (250 pixels is same width as Ganglia's pie chart)
9//
10$SMALL_CLUSTERIMAGE_MAXWIDTH = 250;
11
12// The size of a single node in the small clusterimage
13//
14$SMALL_CLUSTERIMAGE_NODEWIDTH = 11;
15
16// How to mark nodes with a job in clusterimage
17// allcpus when all cpu's are in use
18// singlecpu when less than all cpus are in use
19//
20//$JOB_NODE_MARKING_ALLCPUS = "J";
21//$JOB_NODE_MARKING_SINGLECPU = "j";
22$JOB_NODE_MARKING = "J";
23
24// XML Datasource for Toga
25// by default localhost's gmetad
26//
27$DATA_SOURCE = '127.0.0.1:8649';
28
29?>
Note: See TracBrowser for help on using the repository browser.