add cdr conf example
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4573 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
4720bef8e0
commit
26c4c9f473
|
@ -0,0 +1,25 @@
|
|||
<configuration name="mod_cdr.conf" description="CDR Configuration">
|
||||
<pddcdr>
|
||||
<param name="path" value="/work/temp/pddcdr"/>
|
||||
<!-- <param name="chanvars" value="username,accountcode"/> -->
|
||||
<!-- <param name="chanvars_fixed" value="foo"/> -->
|
||||
</pddcdr>
|
||||
<csvcdr>
|
||||
<param name="path" value="/work/temp/csvcdr"/>
|
||||
<param name="size_limit" value="25"/>
|
||||
<!-- <param name="chanvars_fixed" value="username"/> -->
|
||||
<!-- <param name="chanvars_supp" value="*"/> -->
|
||||
<!-- <param name="repeat_fixed_in_supp" value="0"/> -->
|
||||
</csvcdr>
|
||||
<mysqlcdr>
|
||||
<param name="hostname" value="10.0.0.1"/>
|
||||
<param name="username" value="test"/>
|
||||
<param name="password" value="test"/>
|
||||
<param name="dbname" value="testing"/>
|
||||
<!-- This following line logs username as a varchar, and The_Kow as a tiny -->
|
||||
<!-- <param name="chanvars_fixed" value="username=s,The_Kow=t"/> -->
|
||||
<!-- If you do not want to log any and all chanvars to the chanvar table, comment the next 2 lines out -->
|
||||
<param name="chanvars_supp" value="*"/>
|
||||
<param name="chanvars_supp_repeat_fixed" value="0"/>
|
||||
</mysqlcdr>
|
||||
</configuration>
|
Loading…
Reference in New Issue