Module: kamailio
Branch: master
Commit: 6a69220ec8f46528d1c02295452e59462d02d0f5
URL: https://github.com/kamailio/kamailio/commit/6a69220ec8f46528d1c02295452e594…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2017-08-22T12:31:44+02:00
modules: readme files regenerated - statsc ... [skip ci]
---
Modified: src/modules/statsc/README
Modified: src/modules/statsd/README
Modified: src/modules/usrloc/README
---
Diff: https://github.com/kamailio/kamailio/commit/6a69220ec8f46528d1c02295452e594…
Patch: https://github.com/kamailio/kamailio/commit/6a69220ec8f46528d1c02295452e594…
---
diff --git a/src/modules/statsc/README b/src/modules/statsc/README
index a546b56db5..a753399731 100644
--- a/src/modules/statsc/README
+++ b/src/modules/statsc/README
@@ -31,7 +31,7 @@ Daniel-Constantin Mierla
4. RPC Commands
- 4.1. statsc.exec
+ 4.1. statsc.report
List of Examples
@@ -57,7 +57,7 @@ Chapter 1. Admin Guide
4. RPC Commands
- 4.1. statsc.exec
+ 4.1. statsc.report
1. Overview
@@ -135,9 +135,9 @@ modparam("statsc", "track", "req.received=rcv_requests;rpl.received=rcv_replies"
4. RPC Commands
- 4.1. statsc.exec
+ 4.1. statsc.report
-4.1. statsc.exec
+4.1. statsc.report
Get the report of recorded statistics.
diff --git a/src/modules/statsd/README b/src/modules/statsd/README
index 58b3fd8ae1..5a414b7744 100644
--- a/src/modules/statsd/README
+++ b/src/modules/statsd/README
@@ -129,11 +129,10 @@ failure_route[tryagain] {
3.2. statsd_gauge(key, value)
Gauges are a constant data type. They are not subject to averaging and
- they donât change unless you change them. That is, once you set a
- gauge value, it will be a flat line on the graph until you change it
- again.
+ they don't change unless you change them. That is, once you set a gauge
+ value, it will be a flat line on the graph until you change it again.
- Gauges are useful for things that are already averaged, or donât need
+ Gauges are useful for things that are already averaged, or don't need
to reset periodically
This function can be used in ALL ROUTES.
@@ -141,10 +140,12 @@ failure_route[tryagain] {
The statsd server collects gauges under the stats.gauges prefix.
Example 1.4. statsd_set usage
+...
route [gauge_method]{
statsd_gauge("method"+$rm, "+1");
statsd_gauge("customer_credit"+$var(customer),"$var(customer_credit)");
}
+...
3.3. statsd_start(key)
@@ -158,7 +159,7 @@ route [gauge_method]{
The statsd server collects all timers under the stats.timers prefix and
will calculate the lower bound, mean, 90th percentile, upper bound, and
count of each timer for each period (by the time it can be seen in
- graphite, thatâs usually per minute).
+ graphite, that's usually per minute).
Example 1.5. statsd_start usage
...
@@ -205,6 +206,6 @@ if(geoip_match("$si", "src")){
...
if (t_check_status("408")) {
statsd_decr("kamailio.successfulCalls");
- statsd_incr("kamailio.reply.busy");
+ statsd_incr("kamailio.reply.timeout");
}
...
diff --git a/src/modules/usrloc/README b/src/modules/usrloc/README
index fbddff49a1..131baca9c5 100644
--- a/src/modules/usrloc/README
+++ b/src/modules/usrloc/README
@@ -895,7 +895,7 @@ modparam("usrloc", "close_expired_tcp", 1)
If set to 1, Kamailio expects to deal with BIGINT type on database
columns for expires and last modified values. It allows to handle
- better the daylight time adjustmens. If set to 0, those columns are
+ better the daylight time adjustments. If set to 0, those columns are
expected to be on default type 'DATETIME'. When it is 1, the database
columns types have to be changed manually to 'BIGINT'.
Module: kamailio
Branch: master
Commit: febcf7cdb29896fb7bc02585b4ac36a5fba5e3ae
URL: https://github.com/kamailio/kamailio/commit/febcf7cdb29896fb7bc02585b4ac36a…
Author: Olle E. Johansson <oej(a)edvina.net>
Committer: Olle E. Johansson <oej(a)edvina.net>
Date: 2017-08-22T12:30:12+02:00
usrloc Fix README typo
---
Modified: src/modules/usrloc/doc/usrloc_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/febcf7cdb29896fb7bc02585b4ac36a…
Patch: https://github.com/kamailio/kamailio/commit/febcf7cdb29896fb7bc02585b4ac36a…
---
diff --git a/src/modules/usrloc/doc/usrloc_admin.xml b/src/modules/usrloc/doc/usrloc_admin.xml
index 2ad2935a8d..1dd4ae378a 100644
--- a/src/modules/usrloc/doc/usrloc_admin.xml
+++ b/src/modules/usrloc/doc/usrloc_admin.xml
@@ -1040,7 +1040,7 @@ modparam("usrloc", "close_expired_tcp", 1)
<para>
If set to 1, &kamailio; expects to deal with BIGINT type on
database columns for expires and last modified values. It
- allows to handle better the daylight time adjustmens. If set
+ allows to handle better the daylight time adjustments. If set
to 0, those columns are expected to be on default type
'DATETIME'. When it is 1, the database columns types have
to be changed manually to 'BIGINT'.
Module: kamailio
Branch: master
Commit: 4c7fbb1d6c33ffa6b1630e2b15bcc60934e4dcb3
URL: https://github.com/kamailio/kamailio/commit/4c7fbb1d6c33ffa6b1630e2b15bcc60…
Author: Olle E. Johansson <oej(a)edvina.net>
Committer: Olle E. Johansson <oej(a)edvina.net>
Date: 2017-08-22T12:22:58+02:00
statsd Fix strange formatting for apostrophes in the html files by actually using an apostrophe
---
Modified: src/modules/statsd/doc/statsd_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/4c7fbb1d6c33ffa6b1630e2b15bcc60…
Patch: https://github.com/kamailio/kamailio/commit/4c7fbb1d6c33ffa6b1630e2b15bcc60…
---
diff --git a/src/modules/statsd/doc/statsd_admin.xml b/src/modules/statsd/doc/statsd_admin.xml
index cd9e830a87..ccf6296fcd 100644
--- a/src/modules/statsd/doc/statsd_admin.xml
+++ b/src/modules/statsd/doc/statsd_admin.xml
@@ -101,11 +101,11 @@ failure_route[tryagain] {
</title>
<para>
Gauges are a constant data type. They are not subject to averaging
- and they don’t change unless you change them. That is, once you set
+ and they don't change unless you change them. That is, once you set
a gauge value, it will be a flat line on the graph until you change it again.
</para>
<para>
- Gauges are useful for things that are already averaged, or don’t need to reset periodically
+ Gauges are useful for things that are already averaged, or don't need to reset periodically
</para>
<para>
This function can be used in ALL ROUTES.
@@ -116,10 +116,12 @@ failure_route[tryagain] {
<example>
<title><function>statsd_set</function> usage</title>
<programlisting format="linespecific">
+...
route [gauge_method]{
statsd_gauge("method"+$rm, "+1");
statsd_gauge("customer_credit"+$var(customer),"$var(customer_credit)");
}
+...
</programlisting>
</example>
</section>
@@ -139,7 +141,7 @@ route [gauge_method]{
<para>
The statsd server collects all timers under the stats.timers prefix
and will calculate the lower bound, mean, 90th percentile, upper bound, and count of each
- timer for each period (by the time it can be seen in graphite, that’s usually per minute).
+ timer for each period (by the time it can be seen in graphite, that's usually per minute).
</para>
<example>
<title><function>statsd_start</function> usage</title>
@@ -215,7 +217,7 @@ if(geoip_match("$si", "src")){
...
if (t_check_status("408")) {
statsd_decr("kamailio.successfulCalls");
- statsd_incr("kamailio.reply.busy");
+ statsd_incr("kamailio.reply.timeout");
}
...
</programlisting>
Module: kamailio
Branch: master
Commit: 4e219ebae59be64009dc59a28cb158ae4a51db50
URL: https://github.com/kamailio/kamailio/commit/4e219ebae59be64009dc59a28cb158a…
Author: Mikko Lehto <mslehto(a)iki.fi>
Committer: Mikko Lehto <mslehto(a)iki.fi>
Date: 2017-08-21T17:49:38+03:00
topoh: fix documentation typo
---
Modified: src/modules/topoh/doc/topoh_admin.xml
Modified: src/modules/topoh/topoh_mod.c
---
Diff: https://github.com/kamailio/kamailio/commit/4e219ebae59be64009dc59a28cb158a…
Patch: https://github.com/kamailio/kamailio/commit/4e219ebae59be64009dc59a28cb158a…
---
diff --git a/src/modules/topoh/doc/topoh_admin.xml b/src/modules/topoh/doc/topoh_admin.xml
index f421f8ce64..1732b77724 100644
--- a/src/modules/topoh/doc/topoh_admin.xml
+++ b/src/modules/topoh/doc/topoh_admin.xml
@@ -17,7 +17,7 @@
<title>Overview</title>
<para>
This module hides the SIP routing headers that show topology details.
- It it is not affected by the server being transaction stateless or
+ It is not affected by the server being transaction stateless or
stateful. The script interpreter gets the SIP messages decoded,
so all existing functionality is preserved.
</para>
diff --git a/src/modules/topoh/topoh_mod.c b/src/modules/topoh/topoh_mod.c
index 164087592a..4d41e229b6 100644
--- a/src/modules/topoh/topoh_mod.c
+++ b/src/modules/topoh/topoh_mod.c
@@ -26,7 +26,7 @@
/*! \defgroup topoh Kamailio :: Topology hiding
*
* This module hides the SIP routing headers that show topology details.
- * It it is not affected by the server being transaction stateless or
+ * It is not affected by the server being transaction stateless or
* stateful. The script interpreter gets the SIP messages decoded, so all
* existing functionality is preserved.
*/
Module: kamailio
Branch: master
Commit: c2e74aa28ce20ec9f9eb19197aa829e9c9672a1d
URL: https://github.com/kamailio/kamailio/commit/c2e74aa28ce20ec9f9eb19197aa829e…
Author: Mikko Lehto <mslehto(a)iki.fi>
Committer: Mikko Lehto <mslehto(a)iki.fi>
Date: 2017-08-21T17:49:38+03:00
nathelper: fix documentation typo
---
Modified: src/modules/nathelper/doc/nathelper_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/c2e74aa28ce20ec9f9eb19197aa829e…
Patch: https://github.com/kamailio/kamailio/commit/c2e74aa28ce20ec9f9eb19197aa829e…
---
diff --git a/src/modules/nathelper/doc/nathelper_admin.xml b/src/modules/nathelper/doc/nathelper_admin.xml
index d08f80c3a5..9c3373a9ec 100644
--- a/src/modules/nathelper/doc/nathelper_admin.xml
+++ b/src/modules/nathelper/doc/nathelper_admin.xml
@@ -592,7 +592,7 @@ add_rcv_param("1"); # add the parameter to the Contact URI
The function creates a URI consisting of the source IP, port, and
protocol and stores the URI in an Attribute-Value-Pair. The URI will
be appended as "received" parameter to Contact in 200 OK and
- registrar will store it in the received cloumn in the location table.
+ registrar will store it in the received column in the location table.
</para>
<para>
Note: You have to set the <quote>received_avp</quote> parameter of the