summaryrefslogtreecommitdiff
path: root/configs/cel_pgsql.conf.sample
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2014-07-17 21:17:28 +0000
committerMatthew Jordan <mjordan@digium.com>2014-07-17 21:17:28 +0000
commitfc0fecb4768d696db3324bcf6dd03325bb4cd513 (patch)
tree12615f96e88382b2824d4901f6949571e41ea2e4 /configs/cel_pgsql.conf.sample
parent1ce23d4534994fdd8bfb8ad3b9ca1884194097be (diff)
configs: Move sample config files into a subdirectory of configs
This moves all samples configs from configs/ to configs/samples. This allows for additional sets of sample configuration files to be added in the future. Review: https://reviewboard.asterisk.org/r/3804/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@418870 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configs/cel_pgsql.conf.sample')
-rw-r--r--configs/cel_pgsql.conf.sample68
1 files changed, 0 insertions, 68 deletions
diff --git a/configs/cel_pgsql.conf.sample b/configs/cel_pgsql.conf.sample
deleted file mode 100644
index 10e3285ec..000000000
--- a/configs/cel_pgsql.conf.sample
+++ /dev/null
@@ -1,68 +0,0 @@
-;
-; Asterisk Channel Event Logging (CEL) - PostgreSQL Backend
-;
-
-; Sample Asterisk config file for CEL logging to PostgreSQL
-;
-; CEL field names:
-;
-; eventtype
-; CHANNEL_START = 1
-; CHANNEL_END = 2
-; HANGUP = 3
-; ANSWER = 4
-; APP_START = 5
-; APP_END = 6
-; BRIDGE_START = 7
-; BRIDGE_END = 8
-; CONF_START = 9
-; CONF_END = 10
-; PARK_START = 11
-; PARK_END = 12
-; BLINDTRANSFER = 13
-; ATTENDEDTRANSFER = 14
-; TRANSFER = 15
-; HOOKFLASH = 16
-; 3WAY_START = 17
-; 3WAY_END = 18
-; CONF_ENTER = 19
-; CONF_EXIT = 20
-; USER_DEFINED = 21
-; LINKEDID_END = 22
-; BRIDGE_UPDATE = 23
-; PICKUP = 24
-; FORWARD = 25
-; eventtime (timeval, includes microseconds)
-; userdeftype (set only if eventtype == USER_DEFINED)
-; cid_name
-; cid_num
-; cid_ani
-; cid_rdnis
-; cid_dnid
-; exten
-; context
-; channame
-; appname
-; appdata
-; accountcode
-; peeraccount
-; uniqueid
-; linkedid
-; amaflags (an int)
-; userfield
-; peer
-; extra
-
-[global]
-; Use 'show_user_defined' to put "USER_DEFINED" in the eventtype field,
-; instead of (by default) just putting the user defined event name there.
-;
-;show_user_defined=yes
-
-;hostname=localhost
-;port=5432
-;dbname=asterisk
-;password=password
-;user=postgres
-;table=cel ; SQL table where CEL's will be inserted
-;appname=asterisk ; Postgres application_name support (optional). Whitespace not allowed.