Multi Listener have the same result??

2006-07-20 Thread Javanesevn
My web test plan have [Aggregate Report] and [View Results in Table] report. When I wrote data to different 2 files I got the same results. The result of [Aggregate Report] is the same with [View Results in Table]. But from JMeter's GUI, I saw different results. Could you explain to me about d

Re: Monitor Results - Best practice

2006-07-20 Thread Peter Lin
the monitor is used 2 ways. 1. to smoke test tomcat. several tomcat developers use it for smoke testing tomcat 2. to monitor several tomcat 5 servers peter On 7/20/06, Andy Dawson <[EMAIL PROTECTED]> wrote: Hi All, I have a test plan containing 2 thread groups One for the test (Thread

Re: Monitor Results - Memory Load Percentage

2006-07-20 Thread Peter Lin
The reason for using (total - free)/total is that max value is not accurate. the only cases where max is more useful is if someone wants to know how close to Max they are and they've set an explicit Max heap. other people have asked about this in the past. For example, on linux or solaris, if one

Re: Simulating thousands of unique users

2006-07-20 Thread sebb
If you want to generate users with the names test01, test02, etc, you can use a counter: Name: Two digit number Start:1 Incr: 1 Max: 999 Format: 00 Ref Name: NN Track independently: unchecked, i.e. off and then use test${NN} where you need the user name. S. On 26/06/06, Mili

Re: Timers Question

2006-07-20 Thread sebb
Timers are not included in any sample elapsed times. They do affect the throughput, because the overall time includes any timer delays. And of course they have an effect on the sample start-/end-times. Note that timers _are_ included in the "samples" that are created by the Transaction Controlle

Re: User parameters

2006-07-20 Thread sebb
What are you trying to do? i.e. why do you need to store so much data in a variable? On 20/07/06, vetalok <[EMAIL PROTECTED]> wrote: hi! When I pushed pre-processors->add user parameters->"Add Variable Button" new variable "mydata" has been created. How can I input big data into this variable

Re: Sending all files from a folder along an Http Request Sampler

2006-07-20 Thread sebb
1) It's not possible to send more than one file at a time currently. This is an outstanding enhancement. 2) It should be possible to use a BeanShell test element to scan the directory for file names, and store them in variables suitable for use in the For Each Controller. On 30/06/06, Richa Pant

Re: XML file as an input in HttpRequest Sampler

2006-07-20 Thread sebb
What do you mean by "use xml file for the request" ? If you want to use POST to upload a file, then you can use any type of file; just add the appropriate Mime type to the request. Otherwise, you'll need to provide a bit more explanation of what you are trying to do. On 18/07/06, Abbey Adique <

Monitor Results - Best practice

2006-07-20 Thread Andy Dawson
Hi All, I have a test plan containing 2 thread groups One for the test (Thread count >1) One for monitoring the results (Thread count ==1) The test plan is for a fixed duration with a permanent thread loop. For the proof of concept type testing I am doing at the moment this is fine - the

Monitor Results - Memory Load Percentage

2006-07-20 Thread Andy Dawson
Hi All, I have a simple jsp application I am currently testing and Tomcat is installed with all the defaults. After noticing that the memory load was always above 50% according to JMeter I wondered if this was reporting what I was expecting. With the defaults, and for low/no load, the server rep

Re: User parameters

2006-07-20 Thread vetalok
it is good idea to use ${_StringFromFile(E:\jmeter\paramFileName.txt)}! But String contains only 256 chars :( So I read only 256 chars... I need to read much more :-) -- View this message in context: http://www.nabble.com/User-parameters-tf1971673.html#a5414764 Sent from the JMeter - User forum

RE: How can we calculate total execution time of some requests?

2006-07-20 Thread vetalok
It works! Thank u very much! :-) -- View this message in context: http://www.nabble.com/How-can-we-calculate-total-execution-time-of-some-requests--tf1971685.html#a5413864 Sent from the JMeter - User forum at Nabble.com. - To

Re: User parameters

2006-07-20 Thread avishek
vetalok gmail.com> writes: > > > hi! > When I pushed pre-processors-≥add user parameters->"Add Variable Button" new > variable "mydata" has been created. How can I input big data into this > variable? Because it seems there is only String data( 256 symbols) > variables, I need to input 4KB of

RE: How can we calculate total execution time of some requests?

2006-07-20 Thread Willingham Geoff
Use a transaction controller to group all relevant requests ;) Geoff -Original Message- From: vetalok [mailto:[EMAIL PROTECTED] Sent: 20 July 2006 12:12 To: jmeter-user@jakarta.apache.org Subject: How can we calculate total execution time of some requests? It seems we can calculate ti

How can we calculate total execution time of some requests?

2006-07-20 Thread vetalok
It seems we can calculate time of execution only one request...(view results in table) -- View this message in context: http://www.nabble.com/How-can-we-calculate-total-execution-time-of-some-requests--tf1971685.html#a5412695 Sent from the JMeter - User forum at Nabble.com. --

Re: Jmeter response time

2006-07-20 Thread vetalok
hi! How can I calculate the whole(or total time of exucuting 2 or 3 requests) time of running my test plan? There are only time of each request in "view results in table". I need to know the total time of executing 2 or more requests (2 or more)? Can someone help me? -- View this message in co

User parameters

2006-07-20 Thread vetalok
hi! When I pushed pre-processors->add user parameters->"Add Variable Button" new variable "mydata" has been created. How can I input big data into this variable? Because it seems there is only String data( 256 symbols) variables, I need to input 4KB of data? Is there some posibility to do it? --

Re: Jmeter:pass dynamic parameter inside the loop

2006-07-20 Thread sebb
On 20/07/06, Willingham Geoff <[EMAIL PROTECTED]> wrote: Normally, data is written in a csv file as follows: NAME, NRIC, OTHER, . Mohd Zaidi Bin Mat, 800119035485, 10, . Chen Jun Ge, 590519-15-5959, 8, . Thing Alvin, 690906-01-6969, 9, . Ie - one line per record, each data item i

Re: Jmeter response time

2006-07-20 Thread prakash abraham
Thanks all for the replies.. regards, Prakash Abraham On 7/19/06, sebb <[EMAIL PROTECTED]> wrote: Config items and pre-processors are completed before the sample starts, so are not included in timings. However, if you use a Transaction Controller (rather than a Sampler), this will include the

RE: Jmeter:pass dynamic parameter inside the loop

2006-07-20 Thread boonting
Thanks for your example, it works , but my main issue still not settle, Really appreciate your help and patience. Now i can read the dynamic paramater from CSV data set config, But when i try to run my test plan, it seem like, it only can create 1 record at a time. eg: ThreadGroup Http request (lo

RE: Jmeter:pass dynamic parameter inside the loop

2006-07-20 Thread Willingham Geoff
Normally, data is written in a csv file as follows: NAME, NRIC, OTHER, . Mohd Zaidi Bin Mat, 800119035485, 10, . Chen Jun Ge, 590519-15-5959, 8, . Thing Alvin, 690906-01-6969, 9, . Ie - one line per record, each data item in the record separated by a comma. There are lots of funn