source: branches/1.0/jobarchived/jobarchived.conf @ 839

Last change on this file since 839 was 839, checked in by olahaye, 11 years ago

[jobarchived.conf,conf.php] Set the same path to rrd files in both jobarchived
and web interface config files so by default the config works. More over, this
path is common to most rpm and deb based distros, thus this ease packaging.

File size: 1.9 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                     : 1
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/ganglia/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/jobarchive
72
73# Archive's SQL dbase to use
74#
75# Syntax: <hostname>/<database>
76#
77JOB_SQL_DBASE                   : localhost/jobarchive
78JOB_SQL_USER            : jobarchive
79
80#JOB_SQL_PASSWORD        :
81
82# Timeout for jobs in archive
83#
84# Assume job has already finished while jobarchived was not running
85# after this amount of hours: the it will be finished anyway in the database
86#
87JOB_TIMEOUT                     : 168
88
89# Location of rrdtool binary
90#
91RRDTOOL                         : /usr/bin/rrdtool
Note: See TracBrowser for help on using the repository browser.