Files
asterisk/configs/cel_pgsql.conf.sample
T
Richard Mudgett 4ed91e3f7e Add missing CEL logging fields to various CEL backends.
Multiple revisions 350555,350571

........
  r350555 | rmudgett | 2012-01-13 11:12:51 -0600 (Fri, 13 Jan 2012) | 12 lines
  
  Add missing CEL logging fields to various CEL backends.
  
  * Add missing eventextra to cel_psql.c and cel_odbc.c.
  
  * Add missing PeerAccount and EventExtra to cel_manager.c.
  
  * Add missing userdeftype support for cel_custom.conf.sample and
  cel_sqlite3_custom.conf.sample.
  
  (closes issue ASTERISK-17190)
  Reported by: Bryant Zimmerman
........
  r350571 | rmudgett | 2012-01-13 11:23:57 -0600 (Fri, 13 Jan 2012) | 8 lines
  
  Use compatible names for event extra data for various CEL backends.
  
  * Change eventextra to extra in cel_psql.c and cel_odbc.c.
  
  * Change EventExtra to Extra in cel_manager.c.
  
  (issue ASTERISK-17190)
........

Merged revisions 350555,350571 from http://svn.asterisk.org/svn/asterisk/branches/1.8


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@350585 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-01-13 17:29:34 +00:00

63 lines
1.2 KiB
Plaintext

;
; Asterisk Channel Event Logging (CEL) - PostgreSQL Backend
;
; Sample Asterisk config file for CEL logging to PostgreSQL
;
; CEL field names:
;
; eventtype
; CEL_CHANNEL_START = 1
; CEL_CHANNEL_END = 2
; CEL_HANGUP = 3
; CEL_ANSWER = 4
; CEL_APP_START = 5
; CEL_APP_END = 6
; CEL_BRIDGE_START = 7
; CEL_BRIDGE_END = 8
; CEL_CONF_START = 9
; CEL_CONF_END = 10
; CEL_PARK_START = 11
; CEL_PARK_END = 12
; CEL_BLINDTRANSFER = 13
; CEL_ATTENDEDTRANSFER = 14
; CEL_TRANSFER = 15
; CEL_HOOKFLASH = 16
; CEL_3WAY_START = 17
; CEL_3WAY_END = 18
; CEL_CONF_ENTER = 19
; CEL_CONF_EXIT = 20
; CEL_USER_DEFINED = 21
; CEL_LINKEDID_END = 22
; CEL_BRIDGE_UPDATE = 23
; CEL_PICKUP = 24
; CEL_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]
;hostname=localhost
;port=5432
;dbname=asterisk
;password=password
;user=postgres
;table=cel ;SQL table where CEL's will be inserted