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

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

web/addons/job_monarch/clusterconf:

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