1# @PKG_NAME@–@PKG_VERSION@
2# Config File for process_perfdata.pl
3#
4# More info on RRDtool can be found at www.rrdtool.org
5
6#
7# process_perfdata.pl timeout in seconds
8#
9TIMEOUT = 15
10
11#
12# Use RRDs Perl module
13#
14USE_RRDs = 1
15
16#
17# Path to XML/RRD files
18#
19RRDPATH = @PERFDATA_DIR@
20
21#
22# Location of RRDtool binary
23#
24RRDTOOL = @RRDTOOL@
25
26#
27# Location of PNP config files
28#
29CFG_DIR = @sysconfdir@
30
31#
32# Use a single RRD database per service
33# one or more datasources per RRD database
34# RRD_STORAGE_TYPE = SINGLE
35#
36# Use multiple RRD databases per service
37# one RRD database per datasource.
38# RRD_STORAGE_TYPE = MULTIPLE
39#
40RRD_STORAGE_TYPE = SINGLE
41
42#
43# Max. interval between samples/updates
44#
45RRD_HEARTBEAT = 8460
46
47#
48# File with RRA options used to create new RRD files
49#
50RRA_CFG = @sysconfdir@/rra.cfg
51
52#
53# Interval at which PDPs are generated
54#
55RRA_STEP = 60
56
57#
58# Name of the log file
59#
60LOG_FILE = @PERFDATA_LOG@
61
62#
63# Loglevel 0=silent 1=normal 2=debug
64#
65LOG_LEVEL = @DEBUG@
66
67#
68# XML encoding
69# The supported encodings are ISO-8859-1, UTF-8 and US-ASCII.
70# http://www.php.net/xml-parser-create
71#
72XML_ENC = UTF-8
73
74#
75# XML update delay in seconds
76# 0 = Update XML Files everytime new data arrives
77#
78# Use this option to reduce disk I/O
79#
80XML_UPDATE_DELAY = 0
81
82#
83# Use only with RRDtool svn revision 1511+
84#
85# RRD_DAEMON_OPTS = unix:/tmp/rrdcached.sock
86RRD_DAEMON_OPTS =
87
88#
89# Spool directory used for internal statistics
90#
91STATS_DIR = @localstatedir@/stats
92
93
94#########################################################
95# Gearman Worker Config
96# Only used when running as Gearman worker
97
98#
99# How many child processes
100#
101PREFORK = 1
102
103#
104# Gearman server to connect to
105# Comma separated list of Gearman job servers
106#
107GEARMAN_HOST = localhost:4730
108
109#
110# Restart child process after a given count of requests
111#
112REQUESTS_PER_CHILD = 10000
113
114#
115# Enables or disables encryption.
116# It is strongly advised to not disable encryption, or
117# anybody will be able to inject packages to your worker.
118# When using encryption, you will have to specify a shared
119# secret eithr via the KEY or the KEY_FILE option.
120# Default is 1.
121#
122ENCRYPTION = 1
123
124#
125# A shared password which will be used for
126# encryption of data pakets. Should be at least 8
127# bytes long. Maximum length is 32 characters.
128#
129KEY = should_be_changed
130
131#
132# The shared password will be read from this file.
133# Only the first 32 characters will be used.
134#
135# KEY_FILE = @sysconfdir@/secret.key
136