Please consider to change the FSVM configuration only as the last resort. Most likely you will never have to change it.
The default configuration of recoding archiving module is located in the file /opt/faster/conf/rak.xml
. To keep your changes persistent they should be placed into /opt/faster/conf/localhost-config.xml
file, because updating overwrite the former file.
Sample of content of /opt/faster/conf/rak.xml
<configuration> <archiving> <spool>/var/spool/asterisk</spool> <from>23:00</from> <upto>06:00</upto> <interval>30000</interval> <batch>50</batch> <dryMode>false</dryMode> <shape>ymdutc</shape> <gc> <active>true</active> <idleInMinutes>12</idleInMinutes> <expirationInDays>14</expirationInDays> </gc> </archiving> </configuration>
Sample of content /opt/faster/conf/localhost-config.xml
with the changes.
<configuration> <archiving> <from>02:00</from> <upto>08:00</upto> </archiving> </configuration>
<from>00:00</from> <upto>24:00</upto>
<from>20:00</from> <upto>08:00</upto>
<from>13:00</from> <upto>18:00</upto>
interval: it is an interval in milliseconds between successive runs (both archiving and gc activity).true
value here will completely turns the archiving activity off. Please don't change this.ymdutc
(default) or plain
- internal shape of archive (see the Recoding Archive Format article for details).false
value here will turns of removing outdated file in the monitor/protected
folder.The batch and interval properties limit throughput of the module. The archiving throughput should larger then PBX one. Default is 100 calls per minute (30sec interval, two polls per minute, each is 50 calls max). If it is not enough, then change these properties and restart the daemon.
0 Comments