1 | [DEFAULT] |
---|
2 | # Wether or not to run as a daemon in background |
---|
3 | # |
---|
4 | DAEMONIZE : 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 | # |
---|
18 | DEBUG_LEVEL : 1 |
---|
19 | |
---|
20 | # Enable logging to syslog? |
---|
21 | # |
---|
22 | USE_SYSLOG : 1 |
---|
23 | |
---|
24 | # What level msg'es should be logged to syslog? |
---|
25 | # |
---|
26 | # usually: lvl 0 (errors) |
---|
27 | # |
---|
28 | SYSLOG_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 | # |
---|
36 | SYSLOG_FACILITY : DAEMON |
---|
37 | |
---|
38 | # Where is the gmetad.conf located |
---|
39 | # |
---|
40 | GMETAD_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 | # |
---|
47 | ARCHIVE_XMLSOURCE : localhost:8651 |
---|
48 | |
---|
49 | # List of data_source names to archive for |
---|
50 | # |
---|
51 | # Syntax: [ "<clustername>", "<clustername>" ] |
---|
52 | # |
---|
53 | ARCHIVE_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 | # |
---|
62 | ARCHIVE_HOURS_PER_RRD : 12 |
---|
63 | |
---|
64 | # Which metrics to exclude from archiving |
---|
65 | # NOTE: This can be a regexp or a string |
---|
66 | # |
---|
67 | ARCHIVE_EXCLUDE_METRICS : ".*Temp.*", ".*RPM.*", ".*Version.*", ".*Tag$", "boottime", "gexec", "os.*", "machine_type" |
---|
68 | |
---|
69 | # Where to store the archived rrd's |
---|
70 | # |
---|
71 | ARCHIVE_PATH : /data/jobarch |
---|
72 | |
---|
73 | # Archive's SQL dbase to use |
---|
74 | # |
---|
75 | # Syntax: <hostname>/<database> |
---|
76 | # |
---|
77 | JOB_SQL_DBASE : localhost/jobarchive |
---|
78 | JOB_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 | # |
---|
87 | JOB_TIMEOUT : 168 |
---|
88 | |
---|
89 | # Location of rrdtool binary |
---|
90 | # |
---|
91 | RRDTOOL : /usr/bin/rrdtool |
---|