On Mon, Aug 21, 2017 at 11:43:31AM +0530, Logeshwaran G wrote:
How to take call counts from the kamailio?
Kamailio is not inherently aware of "calls", but the dialog module adds the necessary state:
https://kamailio.org/docs/modules/5.0.x/modules/dialog.html
If you just want call counts globally across the system, you can add dialog state by calling dlg_manage() before t_relay() / initial dialog-forming transaction creation. Then you can issue an RPC command to get the global call count.
If you want to segregate calls by inbound/outbound, or by customer account or whatever, you need to organise them into "dialog profiles" and use the identifier as a "key":
https://kamailio.org/docs/modules/5.0.x/modules/dialog.html#dialog.p.profile...
https://kamailio.org/docs/modules/5.0.x/modules/dialog.html#dialog.f.set_dlg...
There are RPC commands to get the call count within a particular profile, optionally by value.
-- Alex