Ignore:
Timestamp:
01/06/06 15:33:08 (17 years ago)
Author:
bastiaans
Message:

job_monarch/conf.php:

  • added option JOB_ARCHIVE_DBASE

job_monarch/libtoga.php:

  • added usage of option JOB_ARCHIVE_DBASE
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/web/addons/job_monarch/conf.php

    r206 r207  
    2323// XML Datasource for Toga
    2424// by default localhost's gmetad
     25// [syntax: <ip>:<port>]
    2526//
    2627$DATA_SOURCE = '127.0.0.1:8651';
     
    3031$JOB_ARCHIVE = 1;
    3132
    32 // Path to the job archive
     33// Path to the job archive rrd files
    3334//
    34 $JOB_ARCHIVE_DIR = '/data/jobarch/rrds';
     35$JOB_ARCHIVE_DIR = "/data/jobarch/rrds";
     36
     37// Location of the job archive database
     38// [syntax: <ip>/<dbase>]
     39//
     40$JOB_ARCHIVE_DBASE = "127.0.0.1/jobarch";
    3541
    3642// Path to rrdtool binary
    3743//
    38 $RRDTOOL = '/usr/bin/rrdtool';
    39 
     44$RRDTOOL = "/usr/bin/rrdtool";
    4045?>
Note: See TracChangeset for help on using the changeset viewer.