Changeset 224 for trunk/jobmond


Ignore:
Timestamp:
03/10/06 15:10:23 (18 years ago)
Author:
bastiaans
Message:

jobarchived/examples:

  • added

jobmond/jobmond.py:

  • removed config option comments

jobarchived/jobarchived.py:

  • removed config option comments
  • added RRDTOOL option

jobmond/jobmond.conf:

  • added config option comments

jobarchived/jobarchived.conf:

  • added config option comments
  • added RRDTOOL option
Location:
trunk/jobmond
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/jobmond/jobmond.conf

    r218 r224  
    11[DEFAULT]
     2# Specify debugging level here;
     3#
     4# 10 = gemtric cmd's
     5#
    26DEBUG_LEVEL             : 0
     7
     8# Wether or not to run as a daemon in background
     9#
    310DAEMONIZE               : 1
     11
     12# Which Torque server to monitor
     13#
    414TORQUE_SERVER           : localhost
     15
     16# How many seconds interval for polling of jobs
     17#
     18# this will effect directly how accurate the
     19# end time of a job can be determined
     20#
    521TORQUE_POLL_INTERVAL    : 10
     22
     23# Location of gmond.conf
     24#
     25# Default: /etc/gmond.conf
     26#
    627GMOND_CONF              : /etc/gmond.conf
     28
     29# Wether or not to detect differences in
     30# time from Torque server and local time.
     31#
     32# Ideally both machines (if not the same)
     33# should have the same time (via ntp or whatever)
     34#
    735DETECT_TIME_DIFFS       : 1
     36
     37# Regexp style hostname translation
     38#
     39# Usefull if your Torque hostnames are not the same as your
     40# Ganglia hostnames (different network interfaces)
     41#
     42# Syntax: /orig/new/, /orig/new/
     43#
    844BATCH_HOST_TRANSLATE    :
  • trunk/jobmond/jobmond.py

    r220 r224  
    7171        global DEBUG_LEVEL, DAEMONIZE, TORQUE_SERVER, TORQUE_POLL_INTERVAL, GMOND_CONF, DETECT_TIME_DIFFS, BATCH_HOST_TRANSLATE
    7272
    73         # Specify debugging level here;
    74         #
    75         # 10 = gemtric cmd's
    7673        DEBUG_LEVEL = cfg.getint( 'DEFAULT', 'DEBUG_LEVEL' )
    7774
    78         # Wether or not to run as a daemon in background
    79         #
    8075        DAEMONIZE = cfg.getboolean( 'DEFAULT', 'DAEMONIZE' )
    8176
    82         # Which Torque server to monitor
    83         #
    8477        TORQUE_SERVER = cfg.get( 'DEFAULT', 'TORQUE_SERVER' )
    8578
    86         # How many seconds interval for polling of jobs
    87         #
    88         # this will effect directly how accurate the
    89         # end time of a job can be determined
    90         #
    9179        TORQUE_POLL_INTERVAL = cfg.getint( 'DEFAULT', 'TORQUE_POLL_INTERVAL' )
    9280
    93         # Alternate location of gmond.conf
    94         #
    95         # Default: /etc/gmond.conf
    96         #
    9781        GMOND_CONF = cfg.get( 'DEFAULT', 'GMOND_CONF' )
    9882
    99         # Wether or not to detect differences in
    100         # time from Torque server and local time.
    101         #
    102         # Ideally both machines (if not the same)
    103         # should have the same time (via ntp or whatever)
    104         #
    10583        DETECT_TIME_DIFFS = cfg.getboolean( 'DEFAULT', 'DETECT_TIME_DIFFS' )
    10684
    107         # Regexp style hostname translation
    108         #
    109         # Usefull if your Torque hostnames are not the same as your
    110         # Ganglia hostnames (different network interfaces)
    111         #
    112         # Syntax: /orig/new/
    113         #
    11485        BATCH_HOST_TRANSLATE = getlist( cfg.get( 'DEFAULT', 'BATCH_HOST_TRANSLATE' ) )
    11586
Note: See TracChangeset for help on using the changeset viewer.