I have a Kazoo installation with Kamailio. I have to VM, one with +700 devices regged and the other with +300 devices.
The problem is that the devices registered on the first machine keeps randomly unregistered. I have 3 unregistrations happening every minute.
If I reboot the machine the problem get solve fora couples of days and after that starts again.
What I should check?
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/2929
We currently can output our logs in a JSON format which gives us the ability to pump that into ELK just fine.
The thing is those logs would be a lot more useful if we were able to inject more context metadata into it, i.e.:
- Request original IP
- Request original User Agent
- Other request/response miscellaneous headers
This would be appliable to get a dashboard built for Pike rate limiting and it's blocked IPs, or mapping out geolocations based on general requests IPs.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/2927
Module: kamailio
Branch: master
Commit: b9e8e09fd56b9cd2f1bd926edb6faf421b2893a1
URL: https://github.com/kamailio/kamailio/commit/b9e8e09fd56b9cd2f1bd926edb6faf4…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2021-11-08T12:46:53+01:00
posops: docs for pos_set_char()
---
Modified: src/modules/posops/doc/posops_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/b9e8e09fd56b9cd2f1bd926edb6faf4…
Patch: https://github.com/kamailio/kamailio/commit/b9e8e09fd56b9cd2f1bd926edb6faf4…
---
diff --git a/src/modules/posops/doc/posops_admin.xml b/src/modules/posops/doc/posops_admin.xml
index fcfd23ac12..1a38b85c67 100644
--- a/src/modules/posops/doc/posops_admin.xml
+++ b/src/modules/posops/doc/posops_admin.xml
@@ -156,6 +156,32 @@ pos_insert("100", "kamailio-$si");
<programlisting format="linespecific">
...
pos_insert("100", "10");
+...
+ </programlisting>
+ </example>
+ </section>
+ <section id="posops.f.pos_set_char">
+ <title>
+ <function moreinfo="none">pos_set_char(idx, val)</function>
+ </title>
+ <para>
+ Set the char at position index to first character in val.
+ </para>
+ <para>
+ The idx can be an integer value or a variable holding an integer. If
+ the value is negative, the position is counted from the end of the buffer.
+ </para>
+ <para>
+ The val can be a static string or variables.
+ </para>
+ <para>
+ This function can be used from ANY_ROUTE.
+ </para>
+ <example>
+ <title><function>pos_set_char()</function> usage</title>
+ <programlisting format="linespecific">
+...
+pos_set_char("100", "x");
...
</programlisting>
</example>