Re: [OpenSIPS-Users] Possible Memory Problem

2017-03-01 Thread Jim DeVito
HI Liviu,

*I'll put the work around in place and keep an eye out for the patch. As
always thank you guys for your attentiveness and quick response.*

*Thanks!!*

*Jim*

On Wed, Mar 1, 2017 at 12:47 PM, Liviu Chircu  wrote:

> Thanks for the awesome report, Jim - I managed to pinpoint the issue
> immediately.
>
> For now, you can actually prevent the leak by doing:
>
> rest_get("https://www.opensips.org; ,
> "$var(body)", "$var(ctype)");
>
> instead of:
>
> rest_get("https://www.opensips.org; ,
> "$var(body)");
>
> Nevertheless, a fix will be available soon.
>
> Cheers,
>
> Liviu Chircu
> OpenSIPS Developerhttp://www.opensips-solutions.com
>
> On 01.03.2017 18:39, Liviu Chircu wrote:
>
> It's:
>
> :  x [ file: function, line ]
>
> Liviu Chircu
> OpenSIPS Developerhttp://www.opensips-solutions.com
>
> On 01.03.2017 18:10, Jim DeVito wrote:
>
> Hi Liviu!
>
> Server:: OpenSIPS (2.2.3 (x86_64/linux))
>
> For my own understanding what does the numbers on either side of the colon
> mean? sip-proxy02 opensips: 364912 : 6634 x [rest_cb.c: header_func, line
> 88] I assume consumed memory vs released or something like that?
>
> Thanks for looking into this.
>
>
> On Wed, Mar 1, 2017 at 10:58 AM, Liviu Chircu  wrote:
>
>> Hi, Jim!
>>
>> Catching memory leaks in OpenSIPS 2.2+ has never been more fun :) This
>> definitely looks broken:
>>
>> Mar  1 15:02:00 sip-proxy02 opensips: 364912 : 6634 x [rest_cb.c:
>> header_func, line 88]
>> May I ask what version are you using? ("opensips -V") That's the first
>> step in trying to reproduce this!
>>
>> Regards,
>>
>> Liviu Chircu
>> OpenSIPS Developerhttp://www.opensips-solutions.com
>>
>> On 01.03.2017 17:28, Jim DeVito wrote:
>>
>> Hi All,
>> Please take a look at my possible memory problem. The first part of the
>> pastebin is what I see in my log file when I do...
>> rest_get("http://localhost/cnam/?number=$avp(dipnum)", "$avp(cnam)");
>> The second part is the memory dump from the running process with the
>> debugging flags compiled in.
>> http://pastebin.com/45QrtFts
>> Thoughts?
>> Thanks!!
>> P.S. Here is the original conversation. https://opensips
>> .org/pipermail/users/2016-November/035860.html
>> -
>> Jim DeVito
>>
>> ___
>> Users mailing 
>> listUsers@lists.opensips.orghttp://lists.opensips.org/cgi-bin/mailman/listinfo/users
>>
>> ___ Users mailing list
>> Users@lists.opensips.org http://lists.opensips.org/cgi-
>> bin/mailman/listinfo/users
>
> --
> -
> Jim DeVito
> Mobile 216.507.9497 <(216)%20507-9497>
>
> ___
> Users mailing 
> listUsers@lists.opensips.orghttp://lists.opensips.org/cgi-bin/mailman/listinfo/users
>
> ___
> Users mailing 
> listUsers@lists.opensips.orghttp://lists.opensips.org/cgi-bin/mailman/listinfo/users
>
>
> ___
> Users mailing list
> Users@lists.opensips.org
> http://lists.opensips.org/cgi-bin/mailman/listinfo/users
>
>


-- 
-
Jim DeVito
Mobile 216.507.9497
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] FreeSWITCH-driven routing in OpenSIPS 2.3

2017-03-01 Thread Liviu Chircu

Hi, all!

The dispatcher and load_balancer modules now support FreeSWITCH-enabled 
destinations! For such specific destinations, OpenSIPS will 
automatically adjust its routing policies at runtime based on the load 
of the FreeSWITCH systems.


More info is available on the OpenSIPS blog [1]

[1]: 
https://blog.opensips.org/2017/03/01/freeswitch-driven-routing-in-opensips-2-3/


--
Liviu Chircu
OpenSIPS Developer
http://www.opensips-solutions.com


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Possible Memory Problem

2017-03-01 Thread Liviu Chircu
Thanks for the awesome report, Jim - I managed to pinpoint the issue 
immediately.


For now, you can actually prevent the leak by doing:

rest_get("https://www.opensips.org;, "$var(body)", "$var(ctype)");

instead of:

rest_get("https://www.opensips.org;, "$var(body)");

Nevertheless, a fix will be available soon.

Cheers,

Liviu Chircu
OpenSIPS Developer
http://www.opensips-solutions.com

On 01.03.2017 18:39, Liviu Chircu wrote:


It's:

:  x [ file: function, line ]

Liviu Chircu
OpenSIPS Developer
http://www.opensips-solutions.com
On 01.03.2017 18:10, Jim DeVito wrote:

Hi Liviu!

Server:: OpenSIPS (2.2.3 (x86_64/linux))

For my own understanding what does the numbers on either side of the 
colon mean? sip-proxy02 opensips: 364912 : 6634 x [rest_cb.c: 
header_func, line 88] I assume consumed memory vs released or 
something like that?


Thanks for looking into this.


On Wed, Mar 1, 2017 at 10:58 AM, Liviu Chircu > wrote:


Hi, Jim!

Catching memory leaks in OpenSIPS 2.2+ has never been more fun :)
This definitely looks broken:

Mar  1 15:02:00 sip-proxy02 opensips: 364912 : 6634 x [rest_cb.c:
header_func, line 88]

May I ask what version are you using? ("opensips -V") That's the
first step in trying to reproduce this!

Regards,

Liviu Chircu
OpenSIPS Developer
http://www.opensips-solutions.com 

On 01.03.2017 17:28, Jim DeVito wrote:

Hi All,
Please take a look at my possible memory problem. The first part
of the pastebin is what I see in my log file when I do...
rest_get("http://localhost/cnam/?number=$avp(dipnum)
", "$avp(cnam)");
The second part is the memory dump from the running process with
the debugging flags compiled in.
http://pastebin.com/45QrtFts
Thoughts?
Thanks!!
P.S. Here is the original conversation.
https://opensips.org/pipermail/users/2016-November/035860.html

-
Jim DeVito

___
Users mailing list
Users@lists.opensips.org 
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___ Users mailing
list Users@lists.opensips.org 
http://lists.opensips.org/cgi-bin/mailman/listinfo/users
 


--
-
Jim DeVito
Mobile 216.507.9497

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Possible Memory Problem

2017-03-01 Thread Liviu Chircu

It's:

:  x [ file: function, line ]

Liviu Chircu
OpenSIPS Developer
http://www.opensips-solutions.com

On 01.03.2017 18:10, Jim DeVito wrote:

Hi Liviu!

Server:: OpenSIPS (2.2.3 (x86_64/linux))

For my own understanding what does the numbers on either side of the 
colon mean? sip-proxy02 opensips: 364912 : 6634 x [rest_cb.c: 
header_func, line 88] I assume consumed memory vs released or 
something like that?


Thanks for looking into this.


On Wed, Mar 1, 2017 at 10:58 AM, Liviu Chircu > wrote:


Hi, Jim!

Catching memory leaks in OpenSIPS 2.2+ has never been more fun :)
This definitely looks broken:

Mar  1 15:02:00 sip-proxy02 opensips: 364912 : 6634 x [rest_cb.c:
header_func, line 88]

May I ask what version are you using? ("opensips -V") That's the
first step in trying to reproduce this!

Regards,

Liviu Chircu
OpenSIPS Developer
http://www.opensips-solutions.com 

On 01.03.2017 17:28, Jim DeVito wrote:

Hi All,
Please take a look at my possible memory problem. The first part
of the pastebin is what I see in my log file when I do...
rest_get("http://localhost/cnam/?number=$avp(dipnum)
", "$avp(cnam)");
The second part is the memory dump from the running process with
the debugging flags compiled in.
http://pastebin.com/45QrtFts
Thoughts?
Thanks!!
P.S. Here is the original conversation.
https://opensips.org/pipermail/users/2016-November/035860.html

-
Jim DeVito

___
Users mailing list
Users@lists.opensips.org 
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___ Users mailing list
Users@lists.opensips.org 
http://lists.opensips.org/cgi-bin/mailman/listinfo/users
 


--
-
Jim DeVito
Mobile 216.507.9497

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Possible Memory Problem

2017-03-01 Thread Jim DeVito
Hi Liviu!

Server:: OpenSIPS (2.2.3 (x86_64/linux))

For my own understanding what does the numbers on either side of the colon
mean? sip-proxy02 opensips: 364912 : 6634 x [rest_cb.c: header_func, line
88] I assume consumed memory vs released or something like that?

Thanks for looking into this.


On Wed, Mar 1, 2017 at 10:58 AM, Liviu Chircu  wrote:

> Hi, Jim!
>
> Catching memory leaks in OpenSIPS 2.2+ has never been more fun :) This
> definitely looks broken:
>
> Mar  1 15:02:00 sip-proxy02 opensips: 364912 : 6634 x [rest_cb.c:
> header_func, line 88]
> May I ask what version are you using? ("opensips -V") That's the first
> step in trying to reproduce this!
>
> Regards,
>
> Liviu Chircu
> OpenSIPS Developerhttp://www.opensips-solutions.com
>
> On 01.03.2017 17:28, Jim DeVito wrote:
>
> Hi All,
>
> Please take a look at my possible memory problem. The first part of the
> pastebin is what I see in my log file when I do...
>
> rest_get("http://localhost/cnam/?number=$avp(dipnum)", "$avp(cnam)");
>
> The second part is the memory dump from the running process with the
> debugging flags compiled in.
>
> http://pastebin.com/45QrtFts
>
> Thoughts?
>
> Thanks!!
>
> P.S. Here is the original conversation. https://
> opensips.org/pipermail/users/2016-November/035860.html
>
> -
> Jim DeVito
>
>
> ___
> Users mailing 
> listUsers@lists.opensips.orghttp://lists.opensips.org/cgi-bin/mailman/listinfo/users
>
>
>
> ___
> Users mailing list
> Users@lists.opensips.org
> http://lists.opensips.org/cgi-bin/mailman/listinfo/users
>
>


-- 
-
Jim DeVito
Mobile 216.507.9497
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Possible Memory Problem

2017-03-01 Thread Liviu Chircu

Hi, Jim!

Catching memory leaks in OpenSIPS 2.2+ has never been more fun :) This 
definitely looks broken:


Mar  1 15:02:00 sip-proxy02 opensips: 364912 : 6634 x [rest_cb.c: 
header_func, line 88]


May I ask what version are you using? ("opensips -V") That's the first 
step in trying to reproduce this!


Regards,

Liviu Chircu
OpenSIPS Developer
http://www.opensips-solutions.com

On 01.03.2017 17:28, Jim DeVito wrote:

Hi All,

Please take a look at my possible memory problem. The first part of 
the pastebin is what I see in my log file when I do...


rest_get("http://localhost/cnam/?number=$avp(dipnum) 
", "$avp(cnam)");


The second part is the memory dump from the running process with the 
debugging flags compiled in.


http://pastebin.com/45QrtFts

Thoughts?

Thanks!!

P.S. Here is the original conversation. 
https://opensips.org/pipermail/users/2016-November/035860.html


-
Jim DeVito


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] Possible Memory Problem

2017-03-01 Thread Jim DeVito
Hi All,

Please take a look at my possible memory problem. The first part of the
pastebin is what I see in my log file when I do...

rest_get("http://localhost/cnam/?number=$avp(dipnum)", "$avp(cnam)");

The second part is the memory dump from the running process with the
debugging flags compiled in.

http://pastebin.com/45QrtFts

Thoughts?

Thanks!!

P.S. Here is the original conversation.
https://opensips.org/pipermail/users/2016-November/035860.html

-
Jim DeVito
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] OpenSIPS at ClueCon Weekly

2017-03-01 Thread Răzvan Crainea

Hi, Robert!

It's 12:00 CST, or 18:00 UTC. Better check this event schedule:
https://www.timeanddate.com/worldclock/fixedtime.html?msg=OpenSIPS+at+ClueCon+Weekly=20170301T12=3920=45

Best regards,

Răzvan Crainea
OpenSIPS Solutions
www.opensips-solutions.com

On 02/28/2017 09:06 PM, Mundkowsky, Robert wrote:


What time?

Robert Mundkowsky

*From:*Users [mailto:users-boun...@lists.opensips.org] *On Behalf Of 
*Bogdan-Andrei Iancu

*Sent:* Tuesday, February 28, 2017 1:15 PM
*To:* users@lists.opensips.org; developensips 
; n...@lists.opensips.org

*Subject:* [OpenSIPS-Users] OpenSIPS at ClueCon Weekly

Hey all,

Tomorrow, 1st of March, OpenSIPS project will have the floor at 
ClueCon weekly conference, talking about the latest cool stuff in 
OpenSIPS 2.3 - and the most important is the FreeSWITCH integration, 
of course.


More the the conference access:
https://freeswitch.org/confluence/display/FREESWITCH/ClueCon+Weekly+Conference+call

Or watch live https://youtu.be/Fe757wdmqHA

Regards,

--
Bogdan-Andrei Iancu
OpenSIPS Founder and Developer
http://www.opensips-solutions.com



This e-mail and any files transmitted with it may contain privileged 
or confidential information. It is solely for use by the individual 
for whom it is intended, even if addressed incorrectly. If you 
received this e-mail in error, please notify the sender; do not 
disclose, copy, distribute, or take any action in reliance on the 
contents of this information; and delete it from your system. Any 
other use of this e-mail is prohibited.



Thank you for your compliance.




___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users