Re: Custom Sampler Tutorial

2011-06-15 Thread Bruce Ide
I've written a couple of data elements, a sampler and a post-processor. Most of what I picked up came from reading the jmeter source code itself. That's probably the best place to start. I'm still not clear on how some of the UI stuff works, but that's more due to me not being terribly familiar

100% cpu utilization on application server

2011-06-15 Thread Dcunha, Stephanie
Hi, I am performing load test using jmeter on an application hosted on a tomcat server. The problem that I am facing is that the CPU utilization of the application server rises to 100% after a few minutes when a load is put, despite of the number of users. I need to put up a load

Re: 100% cpu utilization on application server

2011-06-15 Thread suresh_rajachar
App server's CPU is increasing. This nothing to do with Jmeter. This can be a performance bottleneck in the application. Verify whether you ramp up the load in a meaningful way. -Suresh Sent using BlackBerry® from Orange -Original Message- From: Dcunha, Stephanie

JMeter test for auto increment field.(alpha numeric)

2011-06-15 Thread Saravanan
Hi...I'm new to JMeter..I've problems in testing a form that having auto increment(alpha numeric)field... for that i have done the following steps... 1.Generated the script(using proxy) for the form that having auto generated field. 2.Then i ve set the No of threads as 10 from Thread Group. 3.Then

HTTP Request

2011-06-15 Thread Lance Ingram
Hi I have created an JMeter user data parameter for date formating ${__time(/MM/dd)}} When sending via HTTP Request the POST DATA in the Request Tab for the date sample is BusinessDateFilter=*2011%2F06%2F15* I am not getting the expected result from the application under test, which is

Re: HTTP Request

2011-06-15 Thread Oliver Lloyd
Don't encode the post param (uncheck the encode checkbox next to the param in the sampler). Also, lose the second }, you just need one. -- View this message in context: http://jmeter.512774.n5.nabble.com/HTTP-Request-tp4491018p4491052.html Sent from the JMeter - User mailing list archive at

Re: HTTP Request

2011-06-15 Thread Lance Ingram
Thanks Oliver Appreciate your advice. Regards Lance On Wed, Jun 15, 2011 at 2:37 PM, Oliver Lloyd oliver_ll...@hotmail.comwrote: Don't encode the post param (uncheck the encode checkbox next to the param in the sampler). Also, lose the second }, you just need one. -- View this message

Multiple users and scenarios

2011-06-15 Thread Selvam T, Palani
All, I have created 5 thread groups(TG) for different scenarios. I would like to run them in following manner: 1. Every time, run Thread Group1 2. For every even times, run TG4 TG5 3. For every third time, run TG2, TG3 TG5 I would like to create a Loop controller

Extending JMeter Plugins

2011-06-15 Thread Selvam T, Palani
Hi, I'm looking at JMeter Plugins for System Monitoring.. Anybody has extended for more counters/parameters? To Install JMeter Plugins à http://code.google.com/p/jmeter-plugins/wiki/PluginInstall http://code.google.com/p/jmeter-plugins/wiki/PerfMon Thanks Regards, Palani Selvam

Re: Multiple users and scenarios

2011-06-15 Thread Bruce Ide
Are you sure you want to do that? It sounds very complicated, which is usually an indicator that you should try to simplify your test. I'm not sure this is even possible with a stock jmeter install, The thread synchronization timer provides for some basic thread blocking, but it may not be

Re: 100% cpu utilization on application server

2011-06-15 Thread Deepak Shetty
I need to put up a load for 5000users and the server is getting killed just by a user load of 100. Concurrent users? JMeter doesnt pause between requests (by default) so if you have just set it up as 100 threads , then you actually testing for a larger number of users. However it's still possible

Re: 100% cpu utilization on application server

2011-06-15 Thread Fazal Syed Ali
Make sure your Tomcat memory settings are utilizing whole 32G of physical memory. Thanks, Fazal On Wed, Jun 15, 2011 at 5:57 AM, Dcunha, Stephanie stephanie.dcu...@igatepatni.com wrote: Hi, I am performing load test using jmeter on an application hosted on a tomcat server. The

Regular expresion to capture multiple lines

2011-06-15 Thread Benedict.Nkosi
Hi everyone, I'm trying to correlate a value but the right and left boundaries are not on the same line. I want to use Total Number of Exceptions as my left boundary and /TR as my right. Please help. return false; Total Number of Exceptions /a /TD

Re: Regular expresion to capture multiple lines

2011-06-15 Thread Deepak Shetty
http://jakarta.apache.org/jmeter/usermanual/regular_expressions.html I believe you need to prefix your regex with(?s) to treat the text as a single line - however i do not currently have an environment to test Something like (?is)Total Number of Exceptions(.*?)/TR - test it and let us know.

Re: Regular expresion to capture multiple lines

2011-06-15 Thread Oliver Lloyd
Total Number of Exceptions(\n|.)*\/TD -- View this message in context: http://jmeter.512774.n5.nabble.com/Custom-Sampler-Tutorial-tp4490189p4492146.html Sent from the JMeter - User mailing list archive at Nabble.com. - To

RE: Regular expresion to capture multiple lines

2011-06-15 Thread Benedict.Nkosi
Hi, I tested it and it doesn't find it. Do you need any other information from me? Kind Regards Benedict Nkosi Performance Tester -Original Message- From: Deepak Shetty [mailto:shet...@gmail.com] Sent: Wednesday, June 15, 2011 12:49 PM To: JMeter Users List Subject: Re: Regular

Re: Regular expresion to capture multiple lines

2011-06-15 Thread Oliver Lloyd
Ooops, you said 'TR'. Total Number of Exceptions(\n|.)*\/TR But you could have worked that out yourself I'm sure... Also, weird thing to match on, why not get the actual value? -- View this message in context: http://jmeter.512774.n5.nabble.com/Custom-Sampler-Tutorial-tp4490189p4492154.html

Re: Regular expresion to capture multiple lines

2011-06-15 Thread Oliver Lloyd
It does work. Try it http://jakarta.apache.org/oro/demo.html here or http://rubular.com/ here . Both give correct matches. Note, I'm only going by what you wrote - check your original post. -- View this message in context:

Re: Regular expresion to capture multiple lines

2011-06-15 Thread Oliver Lloyd
Oh...you're replying to Deepak. I see. -- View this message in context: http://jmeter.512774.n5.nabble.com/Custom-Sampler-Tutorial-tp4490189p4492160.html Sent from the JMeter - User mailing list archive at Nabble.com. - To

RE: Regular expresion to capture multiple lines

2011-06-15 Thread Benedict.Nkosi
Hi Lloyd, Thanks a lot, its working. Kind Regards Benedict Nkosi Performance Tester -Original Message- From: Oliver Lloyd [mailto:oliver_ll...@hotmail.com] Sent: Wednesday, June 15, 2011 1:20 PM To: jmeter-user@jakarta.apache.org Subject: Re: Regular expresion to capture multiple lines

Re: Custom Sampler Tutorial

2011-06-15 Thread Barrie Treloar
On Wed, Jun 15, 2011 at 3:41 PM, Bruce Ide flyingrhenqu...@gmail.com wrote: I've written a couple of data elements, a sampler and a post-processor. Most of what I picked up came from reading the jmeter source code itself. That's probably the best place to start. I'm still not clear on how some

Re: JMeter test for auto increment field.(alpha numeric)

2011-06-15 Thread Saravanan
first of all thanks for your reply ravi... can you explain with some steps how to use random variable and how to define the range /format of output value.give me example please... -- View this message in context:

Re: Regular expresion to capture multiple lines

2011-06-15 Thread Deepak Shetty
Hi I tested it and it worked me. However I see you have your solution so we needn't look further :) regards deepak On Wed, Jun 15, 2011 at 11:15 AM, benedict.nk...@sungard.com wrote: Hi, I tested it and it doesn't find it. Do you need any other information from me? Kind Regards Benedict