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

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

toga/conf.php:

  • How nodes will be marked with a job is now configurable

toga/image.php:

  • Really use clustername for image

toga/libtoga.php:

File size: 613 bytes
RevLine 
[110]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
[111]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
[110]23// XML Datasource for Toga
24// by default localhost's gmetad
25//
26$DATA_SOURCE = '127.0.0.1:8649';
27
28?>
Note: See TracBrowser for help on using the repository browser.