Skip to content

STATISTICS module

The Statistics module is a wrapper over the internal statistics manager, allowing the script writer to dynamically define and use of statistic variables.

By bringing the statistics support into the script, it takes advantage of the script flexibility in defining logics, making possible implementation of any kind of statistic scenario.

The following modules must be loaded before this module:

  • No dependencies on other OpenSIPS modules.

The following libraries or applications must be installed before running OpenSIPS with this module loaded:

  • None.

Name of a new statistic variable. The name may be followed by additional flag which describe the variable behavior:

  • no_reset : variable cannot be reset.
variable example
modparam("statistics", "variable", "register_counter")
modparam("statistics", "variable", "active_calls/no_reset")

Updates the value of the statistic variable with the new value.

Meaning of the parameters is as follows:

  • variable - variable to be updated (it can be a string or a pseudovariable);
  • value - value to update with; it may be also negative.

This function can be used from REQUEST_ROUTE, BRANCH_ROUTE, FAILURE_ROUTE and ONREPLY_ROUTE.

update_stat usage
...
update_stat("register_counter", "+1");
...
$var(a_calls) = "active_calls";
update_stat("$var(a_calls)", "-1");
...

Resets to zero the value of the statistic variable.

Meaning of the parameters is as follows:

  • variable - variable to be reset-ed (it can be a string or a pseudovariable).

This function can be used from REQUEST_ROUTE, BRANCH_ROUTE, FAILURE_ROUTE and ONREPLY_ROUTE.

reset_stat usage
...
reset_stat("register_counter");
...
$var(reg_counter) = "register_counter";
update_stat("$var(reg_counter)");
...

Allows to get and reset core and modules exported statistics. The pseudo-variable receives as parameter the name of the statistic that it want to get or reset.

$stat usage
...
xlog("SHM used size = $stat(used_size) \n");
...
$stat(err_requests) = 0;
...

Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)

#NameDevScoreCommitsLines++Lines—
1.Bogdan-Andrei Iancu (@bogdan-iancu)17972129
2.Daniel-Constantin Mierla (@miconda)1192218
3.Stefan Darius (@dariusstefan)6316217
4.Vlad Paiu (@vladpaiu)5215613
5.Anca Vamanu421416
6.Razvan Crainea (@razvancrainea)4245
7.Henning Westerholt (@henningw)4244
8.Ovidiu Sas (@ovidiusas)31152
9.Konstantin Bokarius3125
10.Edson Gellert Schubert310104

(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)

(2) including any documentation-related commits, excluding merge commits

(3) ignoring whitespace edits, renamed files and auto-generated files

#NameCommit Activity
1.Stefan Darius (@dariusstefan)Jun 2026 - Jul 2026
2.Razvan Crainea (@razvancrainea)Feb 2012 - Jun 2026
3.Vlad Paiu (@vladpaiu)Jul 2010 - Feb 2011
4.Anca VamanuOct 2007 - Sep 2009
5.Bogdan-Andrei Iancu (@bogdan-iancu)Mar 2006 - Aug 2009
6.Ovidiu Sas (@ovidiusas)Jun 2008 - Jun 2008
7.Daniel-Constantin Mierla (@miconda)Nov 2006 - Mar 2008
8.Konstantin BokariusMar 2008 - Mar 2008
9.Edson Gellert SchubertFeb 2008 - Feb 2008
10.Henning Westerholt (@henningw)Aug 2007 - Dec 2007

(1) including any documentation-related commits, excluding merge commits

Last edited by: Razvan Crainea (@razvancrainea), Vlad Paiu (@vladpaiu), Bogdan-Andrei Iancu (@bogdan-iancu), Ovidiu Sas (@ovidiusas), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert.

All documentation files (i.e. .md extension) are licensed under the Creative Common License 4.0