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

Last change on this file since 515 was 515, checked in by bastiaans, 16 years ago

web/addons/job_monarch/conf.php:

  • add node offline/down marking
File size: 2.1 KB
Line 
1<?php
2// Show hosts in a jobview by default?
3//
4$default_showhosts = 1;
5
6// Stop displaying archive search results after SEARCH_RESULT_LIMIT
7//
8$SEARCH_RESULT_LIMIT = 20;
9
10// Show the column job attribute 'requested memory'?
11//
12$COLUMN_REQUESTED_MEMORY = 0;
13
14// Show the column job attribute 'queued' (since)?
15//
16$COLUMN_QUEUED = 1;
17
18// Show the column job attribute 'nodes' hostnames?
19//
20$COLUMN_NODES = 1;
21
22// Path to Ganglia's web frontend root
23//
24//$GANGLIA_PATH = "/var/www/test-ganglia";
25$GANGLIA_PATH = "../..";
26
27// Format of how to display a date and time in human readable format
28//
29$DATETIME_FORMAT = "%a %d %b %Y %H:%M:%S";
30
31// Max size of small clusterimage
32// (250 pixels is same width as Ganglia's pie chart)
33//
34$SMALL_CLUSTERIMAGE_MAXWIDTH = 300;
35
36// The size of a single node in the small clusterimage
37//
38$SMALL_CLUSTERIMAGE_NODEWIDTH = 7;
39
40// Max size of small clusterimage
41// (250 pixels is same width as Ganglia's pie chart)
42//
43$BIG_CLUSTERIMAGE_MAXWIDTH = 500;
44
45// The size of a single node in the small clusterimage
46//
47$BIG_CLUSTERIMAGE_NODEWIDTH = 11;
48
49// Max size of small host image
50//
51$SMALL_HOSTIMAGE_MAXWIDTH = 450;
52
53// How to mark nodes with a job in clusterimage
54//
55$JOB_NODE_MARKING = "J";
56
57// How to mark nodes that are 'down' in the batch
58//
59$NODE_DOWN_MARKING = "X";
60
61// How to mark nodes that are 'offline' in the batch
62//
63$NODE_OFFLINE_MARKING = ".";
64
65// XML Datasource for Job Monarch
66// by default localhost's gmetad
67// [syntax: <ip>:<port>]
68//
69$DATA_SOURCE = '127.0.0.1:8651';
70
71// Is there a jobarchive?
72//
73$JOB_ARCHIVE = 1;
74
75// Path to the job archive rrd files
76//
77$JOB_ARCHIVE_DIR = "/path/to/my/archive";
78
79// Location of the job archive database
80// [syntax: <ip>/<dbase>]
81//
82$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
83
84// Path to rrdtool binary
85//
86$RRDTOOL = "/usr/bin/rrdtool";
87
88// Include cluster specific settings here,
89// they will override any (global) settings above
90// on a per-cluster basis, where available.
91//
92//$CLUSTER_CONFS["Example Cluster"]     = "./clusterconf/example.php";
93//
94//$CLUSTER_CONFS["LISA Cluster"]          = "./clusterconf/lisa-example.php";
95//$CLUSTER_CONFS["GINA Cluster"]          = "./clusterconf/gina-example.php";
96?>
Note: See TracBrowser for help on using the repository browser.