source: trunk/jobarchived/jobarchived.conf-dist @ 372

Last change on this file since 372 was 324, checked in by bastiaans, 17 years ago

jobarchived/jobarchived.conf-dist:

  • use port 8651 again, works better

jobarchived/jobarchived.py:

  • port 8651 works better
File size: 1.8 KB
Line 
1[DEFAULT]
2# Wether or not to run as a daemon in background
3#
4DAEMONIZE                       : 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#
18DEBUG_LEVEL                     : 0
19
20# Enable logging to syslog?
21#
22USE_SYSLOG                      : 1
23
24# What level msg'es should be logged to syslog?
25#
26# usually: lvl 0 (errors)
27#
28SYSLOG_LEVEL                    : 0
29
30# Which facility to use in syslog
31#
32# Known:
33#       KERN, USER, MAIL, DAEMON, AUTH, LPR,
34#       NEWS, UUCP, CRON and LOCAL0 through LOCAL7
35#
36SYSLOG_FACILITY                 : DAEMON
37
38# Where is the gmetad.conf located
39#
40GMETAD_CONF                     : /etc/gmetad.conf
41
42# Where to grab XML data from
43# Usually: local gmetad (port 8651)
44#
45# Syntax: <hostname>:<port>
46#
47ARCHIVE_XMLSOURCE               : localhost:8651
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#
62ARCHIVE_HOURS_PER_RRD           : 12
63
64# Which metrics to exclude from archiving
65# NOTE: This can be a regexp or a string
66#
67ARCHIVE_EXCLUDE_METRICS         : ".*Temp.*", ".*RPM.*", ".*Version.*", ".*Tag$", "boottime", "gexec", "os.*", "machine_type"
68
69# Where to store the archived rrd's
70#
71ARCHIVE_PATH                    : /var/lib/jobarch
72
73# Archive's SQL dbase to use
74#
75# Syntax: <hostname>/<database>
76#
77JOB_SQL_DBASE                   : localhost/jobarchive
78
79# Timeout for jobs in archive
80#
81# Assume job has already finished while jobarchived was not running
82# after this amount of hours: the it will be finished anyway in the database
83#
84JOB_TIMEOUT                     : 168
85
86# Location of rrdtool binary
87#
88RRDTOOL                         : /usr/bin/rrdtool
Note: See TracBrowser for help on using the repository browser.