Re: [Sipp-users] Some errors on the log

2008-08-20 Thread Nicholas SHI
Charles,

Thanks much for your detailed explanation. Yes, it's clear now.

Have a nice day!
Nicholas

2008/8/20 Charles P Wright <[EMAIL PROTECTED]>:
> The timer is set to go off every 400ms.  If it takes more than 3000ms for
> it to get triggered that is a major trip; 10 of those are a fatal error.
> If it takes more than 500ms, it is a minor trip; 120 count as a fatal
> error.  If no firings occur for 10 minutes the counts are reset. These
> thresholds can be adjusted with command line options, and defaults are in
> sipp.hpp.
>
> Charles
>
> extern unsigned long watchdog_interval_DEFVAL(400);
> extern unsigned long watchdog_minor_threshold _DEFVAL(500);
> extern unsigned long watchdog_minor_maxtriggers   _DEFVAL(120);
> extern unsigned long watchdog_major_threshold _DEFVAL(3000);
> extern unsigned long watchdog_major_maxtriggers   _DEFVAL(10);
> extern unsigned long watchdog_reset   _DEFVAL(60);
>
>
> "Nicholas SHI" <[EMAIL PROTECTED]> wrote on 08/19/2008 11:12:52 PM:
>
>> Hi Charles,
>>
>> Sorry to hijack your response. Just want to make sure how you get the
>> watchdog timer is 400ms other than 500ms. I wonder if this is typo
>> error or something magic defined in other place. Thank you! Per log
>> here:
>>
>> >> 1219140649.897846: The minor watchdog timer 500ms has been tripped
>> >> (538), 109 trips remaining..
>>
>> I thought the threashold is 500ms at first.
>>
>> Regards,
>> Nicholas SHI
>> ---
>> Qingdao, China
>>
>> 2008/8/19 Charles P Wright <[EMAIL PROTECTED]>:
>> > The watchdog error means that SIPp set a timer for 400ms in the
> future,
>> > but it took 538 ms for it to come around.  If this happens often, it
> is an
>> > indication that your SIPp machine is overloaded.
>> >
>> > Charles
>> >
>> > [EMAIL PROTECTED] wrote on 08/19/2008 11:14:10
> AM:
>> >
>> >> hi,
>> >>
>> >> I am getting some errors on my "_errors.log" file that shows as
>> > follows
>> >>
>> >> 1219140649.897846: The minor watchdog timer 500ms has been tripped
>> >> (538), 109 trips remaining..
>> >> 1219140649.915473: send_packets.c: sendto failed with error:
>> > Invalidargument..
>> >>
>> >> Can anyone help me to resolve the same?
>> >>
>> >> My calls are failing on my script.
>> >>
>> >> thanks,
>> >> naresh
>> >
>> >>
>> >>
>> >> Did you know? You can CHAT without downloading messenger. Click here
>> >>
>> >
> -
>> >> This SF.Net email is sponsored by the Moblin Your Move Developer's
>> > challenge
>> >> Build the coolest Linux based applications with Moblin SDK & win
> great
>> > prizes
>> >> Grand prize is a trip for two to an Open Source event anywhere in the
>> > world
>> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> >> ___
>> >> Sipp-users mailing list
>> >> Sipp-users@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/sipp-users
>> >
>> >
>> >
> -
>> > This SF.Net email is sponsored by the Moblin Your Move
> Developer'schallenge
>> > Build the coolest Linux based applications with Moblin SDK & win
>> great prizes
>> > Grand prize is a trip for two to an Open Source event anywhere in the
> world
>> > http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> > ___
>> > Sipp-users mailing list
>> > Sipp-users@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/sipp-users
>> >
>>
>>
>>
>> --
>> Nicholas SHI
>> -
>> Tel: +86 131 5638 9168
>> Email: [EMAIL PROTECTED]
>> Location: Qingdao, China
>> URL: http://picasaweb.google.com/shixiaomu
>
>



-- 
Nicholas SHI
-
Tel: +86 131 5638 9168
Email: [EMAIL PROTECTED]
Location: Qingdao, China
URL: http://picasaweb.google.com/shixiaomu

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users


Re: [Sipp-users] Some errors on the log

2008-08-19 Thread Naresh
Hi,

Can you please suggest me what must be the correction from my end to avoid this 
error?
What is the CLI option that you were refering to?

thanks,
Naresh

--- On Wed, 20/8/08, Charles P Wright <[EMAIL PROTECTED]> wrote:
From: Charles P Wright <[EMAIL PROTECTED]>
Subject: Re: [Sipp-users] Some errors on the log
To: "Nicholas SHI" <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED]
Date: Wednesday, 20 August, 2008, 9:06 AM

The timer is set to go off every 400ms.  If it takes more than 3000ms for 
it to get triggered that is a major trip; 10 of those are a fatal error. 
If it takes more than 500ms, it is a minor trip; 120 count as a fatal 
error.  If no firings occur for 10 minutes the counts are reset. These 
thresholds can be adjusted with command line options, and defaults are in 
sipp.hpp.

Charles

extern unsigned long watchdog_interval_DEFVAL(400);
extern unsigned long watchdog_minor_threshold _DEFVAL(500);
extern unsigned long watchdog_minor_maxtriggers   _DEFVAL(120);
extern unsigned long watchdog_major_threshold _DEFVAL(3000);
extern unsigned long watchdog_major_maxtriggers   _DEFVAL(10);
extern unsigned long watchdog_reset   _DEFVAL(60);


"Nicholas SHI" <[EMAIL PROTECTED]> wrote on 08/19/2008
11:12:52 PM:

> Hi Charles,
> 
> Sorry to hijack your response. Just want to make sure how you get the
> watchdog timer is 400ms other than 500ms. I wonder if this is typo
> error or something magic defined in other place. Thank you! Per log
> here:
> 
> >> 1219140649.897846: The minor watchdog timer 500ms has been
tripped
> >> (538), 109 trips remaining..
> 
> I thought the threashold is 500ms at first.
> 
> Regards,
> Nicholas SHI
> ---
> Qingdao, China
> 
> 2008/8/19 Charles P Wright <[EMAIL PROTECTED]>:
> > The watchdog error means that SIPp set a timer for 400ms in the 
future,
> > but it took 538 ms for it to come around.  If this happens often, it 
is an
> > indication that your SIPp machine is overloaded.
> >
> > Charles
> >
> > [EMAIL PROTECTED] wrote on 08/19/2008 11:14:10

AM:
> >
> >> hi,
> >>
> >> I am getting some errors on my "_errors.log" file
that shows as
> > follows
> >>
> >> 1219140649.897846: The minor watchdog timer 500ms has been
tripped
> >> (538), 109 trips remaining..
> >> 1219140649.915473: send_packets.c: sendto failed with error:
> > Invalidargument..
> >>
> >> Can anyone help me to resolve the same?
> >>
> >> My calls are failing on my script.
> >>
> >> thanks,
> >> naresh
> >
> >>
> >>
> >> Did you know? You can CHAT without downloading messenger. Click
here
> >>
> > 
-
> >> This SF.Net email is sponsored by the Moblin Your Move
Developer's
> > challenge
> >> Build the coolest Linux based applications with Moblin SDK &
win 
great
> > prizes
> >> Grand prize is a trip for two to an Open Source event anywhere in
the
> > world
> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> >> ___
> >> Sipp-users mailing list
> >> Sipp-users@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/sipp-users
> >
> >
> > 
-
> > This SF.Net email is sponsored by the Moblin Your Move 
Developer'schallenge
> > Build the coolest Linux based applications with Moblin SDK & win 
> great prizes
> > Grand prize is a trip for two to an Open Source event anywhere in the

world
> > http://moblin-contest.org/redirect.php?banner_id=100&url=/
> > ___
> > Sipp-users mailing list
> > Sipp-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/sipp-users
> >
> 
> 
> 
> -- 
> Nicholas SHI
> -
> Tel: +86 131 5638 9168
> Email: [EMAIL PROTECTED]
> Location: Qingdao, China
> URL: http://picasaweb.google.com/shixiaomu


-
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge
Build the coolest Linux based applications with Moblin SDK & win great
prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_

Re: [Sipp-users] Some errors on the log

2008-08-19 Thread Charles P Wright
The timer is set to go off every 400ms.  If it takes more than 3000ms for 
it to get triggered that is a major trip; 10 of those are a fatal error. 
If it takes more than 500ms, it is a minor trip; 120 count as a fatal 
error.  If no firings occur for 10 minutes the counts are reset. These 
thresholds can be adjusted with command line options, and defaults are in 
sipp.hpp.

Charles

extern unsigned long watchdog_interval_DEFVAL(400);
extern unsigned long watchdog_minor_threshold _DEFVAL(500);
extern unsigned long watchdog_minor_maxtriggers   _DEFVAL(120);
extern unsigned long watchdog_major_threshold _DEFVAL(3000);
extern unsigned long watchdog_major_maxtriggers   _DEFVAL(10);
extern unsigned long watchdog_reset   _DEFVAL(60);


"Nicholas SHI" <[EMAIL PROTECTED]> wrote on 08/19/2008 11:12:52 PM:

> Hi Charles,
> 
> Sorry to hijack your response. Just want to make sure how you get the
> watchdog timer is 400ms other than 500ms. I wonder if this is typo
> error or something magic defined in other place. Thank you! Per log
> here:
> 
> >> 1219140649.897846: The minor watchdog timer 500ms has been tripped
> >> (538), 109 trips remaining..
> 
> I thought the threashold is 500ms at first.
> 
> Regards,
> Nicholas SHI
> ---
> Qingdao, China
> 
> 2008/8/19 Charles P Wright <[EMAIL PROTECTED]>:
> > The watchdog error means that SIPp set a timer for 400ms in the 
future,
> > but it took 538 ms for it to come around.  If this happens often, it 
is an
> > indication that your SIPp machine is overloaded.
> >
> > Charles
> >
> > [EMAIL PROTECTED] wrote on 08/19/2008 11:14:10 
AM:
> >
> >> hi,
> >>
> >> I am getting some errors on my "_errors.log" file that shows as
> > follows
> >>
> >> 1219140649.897846: The minor watchdog timer 500ms has been tripped
> >> (538), 109 trips remaining..
> >> 1219140649.915473: send_packets.c: sendto failed with error:
> > Invalidargument..
> >>
> >> Can anyone help me to resolve the same?
> >>
> >> My calls are failing on my script.
> >>
> >> thanks,
> >> naresh
> >
> >>
> >>
> >> Did you know? You can CHAT without downloading messenger. Click here
> >>
> > 
-
> >> This SF.Net email is sponsored by the Moblin Your Move Developer's
> > challenge
> >> Build the coolest Linux based applications with Moblin SDK & win 
great
> > prizes
> >> Grand prize is a trip for two to an Open Source event anywhere in the
> > world
> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> >> ___
> >> Sipp-users mailing list
> >> Sipp-users@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/sipp-users
> >
> >
> > 
-
> > This SF.Net email is sponsored by the Moblin Your Move 
Developer'schallenge
> > Build the coolest Linux based applications with Moblin SDK & win 
> great prizes
> > Grand prize is a trip for two to an Open Source event anywhere in the 
world
> > http://moblin-contest.org/redirect.php?banner_id=100&url=/
> > ___
> > Sipp-users mailing list
> > Sipp-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/sipp-users
> >
> 
> 
> 
> -- 
> Nicholas SHI
> -
> Tel: +86 131 5638 9168
> Email: [EMAIL PROTECTED]
> Location: Qingdao, China
> URL: http://picasaweb.google.com/shixiaomu


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users


Re: [Sipp-users] Some errors on the log

2008-08-19 Thread Naresh
Are you refering to the retransmission timer set at SIPp?

How about the second error "send_packets.c: sendto failed with error: Invalid 
argument", do these are inter-related?

Waiting for some suggestions from you.

thanks,
Naresh

--- On Tue, 19/8/08, Charles P Wright <[EMAIL PROTECTED]> wrote:
From: Charles P Wright <[EMAIL PROTECTED]>
Subject: Re: [Sipp-users] Some errors on the log
To: "Naresh" <[EMAIL PROTECTED]>
Cc: sipp-users@lists.sourceforge.net, [EMAIL PROTECTED]
Date: Tuesday, 19 August, 2008, 9:21 PM

The watchdog error means that SIPp set a timer for 400ms in the future, 
but it took 538 ms for it to come around.  If this happens often, it is an 
indication that your SIPp machine is overloaded.

Charles

[EMAIL PROTECTED] wrote on 08/19/2008 11:14:10 AM:

> hi,
> 
> I am getting some errors on my "_errors.log" file that shows
as 
follows
> 
> 1219140649.897846: The minor watchdog timer 500ms has been tripped 
> (538), 109 trips remaining..
> 1219140649.915473: send_packets.c: sendto failed with error: 
Invalidargument..
> 
> Can anyone help me to resolve the same?
> 
> My calls are failing on my script.
> 
> thanks,
> naresh

> 
> 
> Did you know? You can CHAT without downloading messenger. Click here
> 
-
> This SF.Net email is sponsored by the Moblin Your Move Developer's 
challenge
> Build the coolest Linux based applications with Moblin SDK & win great

prizes
> Grand prize is a trip for two to an Open Source event anywhere in the 
world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> Sipp-users mailing list
> Sipp-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/sipp-users




  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/___
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users


Re: [Sipp-users] Some errors on the log

2008-08-19 Thread Charles P Wright
The watchdog error means that SIPp set a timer for 400ms in the future, 
but it took 538 ms for it to come around.  If this happens often, it is an 
indication that your SIPp machine is overloaded.

Charles

[EMAIL PROTECTED] wrote on 08/19/2008 11:14:10 AM:

> hi,
> 
> I am getting some errors on my "_errors.log" file that shows as 
follows
> 
> 1219140649.897846: The minor watchdog timer 500ms has been tripped 
> (538), 109 trips remaining..
> 1219140649.915473: send_packets.c: sendto failed with error: 
Invalidargument..
> 
> Can anyone help me to resolve the same?
> 
> My calls are failing on my script.
> 
> thanks,
> naresh

> 
> 
> Did you know? You can CHAT without downloading messenger. Click here
> 
-
> This SF.Net email is sponsored by the Moblin Your Move Developer's 
challenge
> Build the coolest Linux based applications with Moblin SDK & win great 
prizes
> Grand prize is a trip for two to an Open Source event anywhere in the 
world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> Sipp-users mailing list
> Sipp-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/sipp-users


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users


[Sipp-users] Some errors on the log

2008-08-19 Thread Naresh
hi,

I am getting some errors on my "_errors.log" file that shows as follows

1219140649.897846: The minor watchdog timer 500ms has been tripped (538), 109 
trips remaining..
1219140649.915473: send_packets.c: sendto failed with error: Invalid argument.

Can anyone help me to resolve the same?

My calls are failing on my script.

thanks,
naresh




  Unlimited freedom, unlimited storage. Get it now, on 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/___
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users