4

How to generte csv file and load csv using response time graph listener?

Can any one help me in detail that how we find response time in jmeter ?

1
  • What is the consistency of match witht the question in the Title and the Description? Title is a different question, Description is another question. Commented Jul 7, 2016 at 8:15

2 Answers 2

7

If you run JMeter in command-line non-GUI mode as follows:

jmeter -n -t /path/to/your/test_plan.jmx -l /path/to/results_file.jtl 

your results_file.jtl content will look like:

1409124780902,182,Logon,200,OK,Thread Group 1-1,text,true,214,0 1409124781219,153,Logout,200,OK,Thread Group 1-1,text,true,110,0

where second column is page response time in milliseconds.

Other values are:

  • "1409124780902" - current time stamp in ms
  • "182" - page response time
  • "Logon" - sampler name
  • "200" - Response Code
  • "OK" - Response Message
  • "Thread Group 1-1" - Parent Thread Group name, thread number and iteration.
  • "text" - response data type
  • "214" - response data size in bytes
  • "0" - latency

Once your test run is done you can open JMeter GUI and load this results_file.jtl into the listener of your choice.

You might also be interested in JMeter Plugins Extras Set which is capable of generating nice looking and easy understandable response-time related graphs to wit:

Sign up to request clarification or add additional context in comments.

Comments

5

You can get it by adding Reporters.

Please keep in mind Reporters is cpu and memory intensive components and thus should not be used while actual load test.

But for sample testing you can use it and for load test run you can get response time, average,throughput etc by saving output to jtl file in JMeter.

For normal/sample run

Aggregate report gives Average response time, min, max, median etc.

enter image description here

Summary report also gives the same with less details,

enter image description here

While performing actual run you can save output of these reporters in a jtl file. After the test results can be analyzed from jtl files.

1 Comment

Load time returns in milliseconds or in seconds?

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.