summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorJenkins2 <jenkins2@gerrit.asterisk.org>2017-11-16 09:36:40 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-11-16 09:36:41 -0600
commitb5ac9c8a78d513fdb88fc36c10e7e35cd1532557 (patch)
tree38bc4c0158fc5b43793ce0437e68b35c0c5f92d3 /configs
parentf9661d558b696226dbffd00d094faa22f3bd34b3 (diff)
parent4559cd0e284ee3cb672d9c7c935ab99b3bb16489 (diff)
Merge "This patch adds a beanstalk CDR backend."
Diffstat (limited to 'configs')
-rw-r--r--configs/samples/cdr_beanstalkd.conf.sample26
1 files changed, 26 insertions, 0 deletions
diff --git a/configs/samples/cdr_beanstalkd.conf.sample b/configs/samples/cdr_beanstalkd.conf.sample
new file mode 100644
index 000000000..5f45d5d5d
--- /dev/null
+++ b/configs/samples/cdr_beanstalkd.conf.sample
@@ -0,0 +1,26 @@
+;
+; Asterisk Call Management CDR via Beanstalkd job queue
+;
+; Beanstalkd is a simple job queue server, that is highly versatile and simple to use.
+; Beanstalkd includes the capability of using multiple queues at the same time, with priorities.
+;
+; This module requires that your server has the beanstalk-client library installed. The library
+; can be downloaded from - https://github.com/deepfryed/beanstalk-client
+;
+
+[general]
+;enabled = yes
+
+;host = 127.0.0.1 ; Specify the remote IP address of the Beanstalkd server
+;port = 11300 ; Specify the remote PORT of the the Beanstalkd server
+;tube = asterisk-cdr ; Specify the default CDR job queue to use
+;priority = 99 ; Specify the default job priority for the queue. This parameter is useful when building
+ ; platform with multiple Asterisk servers, that are used for different functions. For example,
+ ; none billable CDR records can be inserted with a priority of 99, while billable ones be
+ ; inserted with a priority of 1
+
+
+
+
+
+