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

Last change on this file since 246 was 246, checked in by bastiaans, 18 years ago

web/addons/job_monarch/conf.php:

  • added DATETIME_FORMAT

web/addons/job_monarch/libtoga.php:

  • added makeDate()

web/addons/job_monarch/search.php,
web/addons/job_monarch/overview.php:

  • disable local makeDate, use from libtoga

web/addons/job_monarch/search.php

File size: 1.1 KB
RevLine 
[110]1<?php
[129]2// Show hosts in a jobview by default?
3//
4$default_showhosts = 1;
[110]5
[241]6// Show the column job attribute 'requested memory'?
7//
8$COLUMN_REQUESTED_MEMORY = 0;
9
[242]10// Show the column job attribute 'queued' (since)?
11//
12$COLUMN_QUEUED = 1;
13
[110]14// Path to Ganglia's web frontend root
15//
16$GANGLIA_PATH = "/var/www/ganglia";
17
[246]18// Format of how to display a date and time in human readable format
19//
20$DATETIME_FORMAT = "%a %d %b %Y %H:%M:%S";
21
[110]22// Max size of small clusterimage
23// (250 pixels is same width as Ganglia's pie chart)
24//
25$SMALL_CLUSTERIMAGE_MAXWIDTH = 250;
26
27// The size of a single node in the small clusterimage
28//
29$SMALL_CLUSTERIMAGE_NODEWIDTH = 11;
30
[111]31// How to mark nodes with a job in clusterimage
32//
[115]33$JOB_NODE_MARKING = "J";
[111]34
[219]35// XML Datasource for Job Monarch
[110]36// by default localhost's gmetad
[207]37// [syntax: <ip>:<port>]
[110]38//
[163]39$DATA_SOURCE = '127.0.0.1:8651';
[110]40
[129]41// Is there a jobarchive?
42//
[206]43$JOB_ARCHIVE = 1;
[129]44
[207]45// Path to the job archive rrd files
[206]46//
[207]47$JOB_ARCHIVE_DIR = "/data/jobarch/rrds";
[206]48
[207]49// Location of the job archive database
50// [syntax: <ip>/<dbase>]
51//
52$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
53
[206]54// Path to rrdtool binary
55//
[207]56$RRDTOOL = "/usr/bin/rrdtool";
[110]57?>
Note: See TracBrowser for help on using the repository browser.