Changes between Version 2 and Version 3 of Documentation/Configuration


Ignore:
Timestamp:
05/24/13 11:40:33 (11 years ago)
Author:
ramonb
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Configuration

    v2 v3  
    77
    88== jobmond ==
    9        
    10 1. Edit Jobmond's config to reflect your settings
     9
     10Here is an example of a typical jobmond.conf file contents:
    1111{{{
    12 vi /etc/jobmond.conf
     12[DEFAULT]
     13# Specify debugging level here;
     14#
     15# 10 = gemtric cmd's
     16#
     17DEBUG_LEVEL     : 0
     18
     19# Wether or not to run as a daemon in background
     20#
     21DAEMONIZE       : 1
     22
     23# What Batch type is the system
     24#
     25# Currently supported: pbs, slurm, sge (experimental), lsf (experimental)
     26#
     27BATCH_API       : pbs
     28
     29# Which Batch server to monitor
     30#
     31BATCH_SERVER        : localhost
     32
     33# Which queue(s) to report jobs of
     34# (optional)
     35#
     36#QUEUE          : long, short
     37
     38# How many seconds interval for polling of jobs
     39#
     40# this will effect directly how accurate the
     41# end time of a job can be determined
     42#
     43BATCH_POLL_INTERVAL : 30
     44
     45# Location of gmond.conf
     46#
     47# Default: /etc/gmond.conf
     48#
     49# DEPRECATED!:      use GMETRIC_TARGET!
     50#
     51#GMOND_CONF     : /etc/gmond.conf
     52
     53# Location of gmetric binary
     54#
     55# Default: /usr/bin/gmetric
     56#
     57# DEPRECATED!:      use GMETRIC_TARGET!
     58#
     59#GMETRIC_BINARY     : /usr/bin/gmetric
     60
     61# Target of Gmetric's: where should we report to
     62# (usually: your udp_send_channel from gmond)
     63#
     64# Syntax: <ip>:<port>
     65#
     66GMETRIC_TARGET      : 239.2.11.71:8649
     67
     68# Enable logging to syslog?
     69#
     70USE_SYSLOG                      : 1
     71# What level msg'es should be logged to syslog?
     72#
     73# usually: lvl 0 (errors)
     74#
     75SYSLOG_LEVEL                    : 0
     76
     77# Which facility to use in syslog
     78#
     79# Known:
     80#       KERN, USER, MAIL, DAEMON, AUTH, LPR,
     81#       NEWS, UUCP, CRON and LOCAL0 through LOCAL7
     82#
     83SYSLOG_FACILITY                 : DAEMON
     84
     85
     86# Wether or not to detect differences in
     87# time from Torque server and local time.
     88#
     89# Ideally both machines (if not the same)
     90# should have the same time (via ntp or whatever)
     91#
     92DETECT_TIME_DIFFS   : 1
     93
     94# Regexp style hostname translation
     95#
     96# Usefull if your Batch hostnames are not the same as your
     97# Ganglia hostnames (different network interfaces)
     98#
     99# Syntax: /orig/new/, /orig/new/
     100#
     101BATCH_HOST_TRANSLATE    :
    13102}}}
    14 ( see config comments for syntax and explanation )
     103
     104=== DEBUG_LEVEL ===
     105
     106* required
     107* valid values: any number between 0 - 20
     108
     109This level sets which level of messages are either syslogged (in daemon mode) and/or printed to stdout (in foreground mode)
    15110
    16111== jobarchived ==