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
Line 
1<?php
2
3$CLUSTER_CONFS["LISA Cluster"]  = "./clusterconf/lisa-example.php";
4
5// Sort nodes in clusterimage by
6//
7//$SORTBY_HOSTNAME = "gb-r{x}n{y}.irc.sara.nl";
8//$SORT_ORDER = "asc";
9
10//$SORT_XLABEL = "rack";
11//$SORT_YLABEL = "node";
12
13// Show hosts in a jobview by default?
14//
15$default_showhosts = 1;
16
17// Stop displaying archive search results after SEARCH_RESULT_LIMIT
18//
19$SEARCH_RESULT_LIMIT = 20;
20
21// Show the column job attribute 'requested memory'?
22//
23$COLUMN_REQUESTED_MEMORY = 0;
24
25// Show the column job attribute 'queued' (since)?
26//
27$COLUMN_QUEUED = 1;
28
29// Show the column job attribute 'nodes' hostnames?
30//
31$COLUMN_NODES = 1;
32
33// Path to Ganglia's web frontend root
34//
35$GANGLIA_PATH = "/var/www/ganglia";
36
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
41// Max size of small clusterimage
42// (250 pixels is same width as Ganglia's pie chart)
43//
44$SMALL_CLUSTERIMAGE_MAXWIDTH = 300;
45
46// The size of a single node in the small clusterimage
47//
48$SMALL_CLUSTERIMAGE_NODEWIDTH = 7;
49
50// Max size of small clusterimage
51// (250 pixels is same width as Ganglia's pie chart)
52//
53$BIG_CLUSTERIMAGE_MAXWIDTH = 500;
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
63// How to mark nodes with a job in clusterimage
64//
65$JOB_NODE_MARKING = "J";
66
67// XML Datasource for Job Monarch
68// by default localhost's gmetad
69// [syntax: <ip>:<port>]
70//
71$DATA_SOURCE = '127.0.0.1:8651';
72
73// Is there a jobarchive?
74//
75$JOB_ARCHIVE = 1;
76
77// Path to the job archive rrd files
78//
79$JOB_ARCHIVE_DIR = "/data/gfs/jobarch/rrds";
80
81// Location of the job archive database
82// [syntax: <ip>/<dbase>]
83//
84$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
85
86// Path to rrdtool binary
87//
88$RRDTOOL = "/usr/bin/rrdtool";
89?>
Note: See TracBrowser for help on using the repository browser.