diff --git a/src/modules/siptrace/doc/siptrace_admin.xml b/src/modules/siptrace/doc/siptrace_admin.xml index cc6ead11325..56d69cb95b5 100644 --- a/src/modules/siptrace/doc/siptrace_admin.xml +++ b/src/modules/siptrace/doc/siptrace_admin.xml @@ -427,17 +427,45 @@ modparam("siptrace", "hep_version", 3) ... modparam("siptrace", "hep_capture_id", 234) ... + + + +
+ <varname>trace_db_mode</varname> (integer) + + If set to 1, the module uses INSERT DELAYED to + store to database (when it is available, otherwise falls back + to INSERT). + + + If set to 2, the module uses ASYNC-INSERT to + store to database (when it is available, otherwise falls back + to INSERT). + + + Default value is 0 (use INSERT). + + + Set <varname>trace_db_mode</varname> + parameter + +... +modparam("siptrace", "trace_db_mode", 1) +...
<varname>trace_delayed</varname> (integer) + + Kept for backward compatibily, use trace_db_mode instead. + - Use INSERT DELAYED to store to database when it is available, - instead of INSERT. + If set to non-zero, ot sets trace_db_mode paremter to 1 + when the module is initialized. - Default value is 0 (off). + Default value is 0. Set <varname>trace_delayed</varname>