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
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/jobarchived/jobarchived.conf

    r214 r224  
    11[DEFAULT]
     2# Wether or not to run as a daemon in background
     3#
    24DAEMONIZE                       : 1
     5
     6# Specify debugging level here (only when _not_ DAEMONIZE)
     7#
     8# 11 = XML: metrics
     9# 10 = XML: host, cluster, grid, ganglia
     10# 9  = RRD activity, gmetad config parsing
     11# 8  = RRD file activity
     12# 6  = SQL
     13# 1  = daemon threading
     14# 0  = errors
     15#
     16# default: 0
     17#
    318DEBUG_LEVEL                     : 1
     19
     20# Enable logging to syslog?
     21#
    422USE_SYSLOG                      : 1
     23
     24# What level msg'es should be logged to syslog?
     25#
     26# usually: lvl 0 (errors)
     27#
    528SYSLOG_LEVEL                    : 0
     29
     30# Which facility to use in syslog
     31#
     32# Known:
     33#       LOG_KERN, LOG_USER, LOG_MAIL, LOG_DAEMON, LOG_AUTH, LOG_LPR,
     34#       LOG_NEWS, LOG_UUCP, LOG_CRON and LOG_LOCAL0 to LOG_LOCAL7
     35#
    636SYSLOG_FACILITY                 : DAEMON
     37
     38# Where is the gmetad.conf located
     39#
    740GMETAD_CONF                     : /etc/gmetad.conf
     41
     42# Where to grab XML data from
     43# Usually: local gmetad (port 8651)
     44#
     45# Syntax: <hostname>:<port>
     46#
    847ARCHIVE_XMLSOURCE               : localhost:8651
    9 ARCHIVE_DATASOURCES             : "LISA Cluster"
     48
     49# List of data_source names to archive for
     50#
     51# Syntax: [ "<clustername>", "<clustername>" ]
     52#
     53ARCHIVE_DATASOURCES             : "My Cluster"
     54
     55# Amount of hours to store in one single archived rrd
     56#
     57# If you would like less files you can set this bigger
     58# but could degrade performance
     59#
     60# For now 12 hours seems to work: 2 periods per day
     61#
    1062ARCHIVE_HOURS_PER_RRD           : 12
     63
     64# Which metrics to exclude from archiving
     65# NOTE: This can be a regexp or a string
     66#
    1167ARCHIVE_EXCLUDE_METRICS         : "^Temp_.*_.*", ".*_Temp_.*", ".*_RPM_.*", ".*_Battery_.*"
     68
     69# Where to store the archived rrd's
     70#
    1271ARCHIVE_PATH                    : /data/jobarch/rrds
    13 JOB_SQL_DBASE                   : localhost/jobarch
     72
     73# Archive's SQL dbase to use
     74#
     75# Syntax: <hostname>/<database>
     76#
     77JOB_SQL_DBASE                   : localhost/jobarchive
     78
     79# Location of rrdtool binary
     80#
     81RRDTOOL                         : /usr/bin/rrdtool
Note: See TracChangeset for help on using the changeset viewer.