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

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

web/addons/job_monarch/libtoga.php:

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