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

Last change on this file since 332 was 332, checked in by bastiaans, 17 years ago

web/addons/job_monarch/conf.php:

  • incread BIG_CLUSTERIMAGE_MAXWIDTH so that all LISA's 39 racks will fit :P

web/addons/job_monarch/libtoga.php:

  • draw x/y labels not until node draw loop complete
  • fixed valid x row determination
File size: 1.7 KB
RevLine 
[110]1<?php
[329]2
3// Sort nodes in clusterimage by
4//
5$SORTBY_HOSTNAME = "gb-r{x}n{y}.irc.sara.nl";
6$SORT_ORDER = "asc";
7
8$SORT_XLABEL = "rack";
9$SORT_YLABEL = "node";
10
[129]11// Show hosts in a jobview by default?
12//
13$default_showhosts = 1;
[110]14
[248]15// Stop displaying archive search results after SEARCH_RESULT_LIMIT
16//
17$SEARCH_RESULT_LIMIT = 20;
18
[241]19// Show the column job attribute 'requested memory'?
20//
21$COLUMN_REQUESTED_MEMORY = 0;
22
[242]23// Show the column job attribute 'queued' (since)?
24//
25$COLUMN_QUEUED = 1;
26
[299]27// Show the column job attribute 'nodes' hostnames?
28//
29$COLUMN_NODES = 1;
30
[110]31// Path to Ganglia's web frontend root
32//
33$GANGLIA_PATH = "/var/www/ganglia";
34
[246]35// Format of how to display a date and time in human readable format
36//
37$DATETIME_FORMAT = "%a %d %b %Y %H:%M:%S";
38
[110]39// Max size of small clusterimage
40// (250 pixels is same width as Ganglia's pie chart)
41//
42$SMALL_CLUSTERIMAGE_MAXWIDTH = 250;
43
44// The size of a single node in the small clusterimage
45//
[305]46$SMALL_CLUSTERIMAGE_NODEWIDTH = 7;
[110]47
[305]48// Max size of small clusterimage
49// (250 pixels is same width as Ganglia's pie chart)
50//
[332]51$BIG_CLUSTERIMAGE_MAXWIDTH = 500;
[305]52
53// The size of a single node in the small clusterimage
54//
55$BIG_CLUSTERIMAGE_NODEWIDTH = 11;
56
57// Max size of small host image
58//
59$SMALL_HOSTIMAGE_MAXWIDTH = 450;
60
[111]61// How to mark nodes with a job in clusterimage
62//
[115]63$JOB_NODE_MARKING = "J";
[111]64
[219]65// XML Datasource for Job Monarch
[110]66// by default localhost's gmetad
[207]67// [syntax: <ip>:<port>]
[110]68//
[163]69$DATA_SOURCE = '127.0.0.1:8651';
[110]70
[129]71// Is there a jobarchive?
72//
[206]73$JOB_ARCHIVE = 1;
[129]74
[207]75// Path to the job archive rrd files
[206]76//
[294]77$JOB_ARCHIVE_DIR = "/data/gfs/jobarch/rrds";
[206]78
[207]79// Location of the job archive database
80// [syntax: <ip>/<dbase>]
81//
82$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
83
[206]84// Path to rrdtool binary
85//
[207]86$RRDTOOL = "/usr/bin/rrdtool";
[110]87?>
Note: See TracBrowser for help on using the repository browser.