I am executing a JMeter script for 25 users i.e threads and I wish to know much time it took for each user to perform the particular action (i.e. perform the complete usecase). My intention is to be able to give an average time so to say that if 25 actual users do this function simultaneously in the real environment then the average time it will take is that amount of time. So I wish to know whether there is a feature in JMeter may be a listener that will enable me to get this statistic.
- what are you missing from View Results Tree? every request have Load timeOri Marko– Ori Marko2018-03-04 09:10:43 +00:00Commented Mar 4, 2018 at 9:10
- Summary Report is first thing that comes to mind. Otherwise, please provide an example of desired outputtimbre timbre– timbre timbre2018-03-06 00:09:09 +00:00Commented Mar 6, 2018 at 0:09
Add a comment |
1 Answer
Transaction Controller is something you're looking for. It measures cumulative time of its children so you will have both individual actions timings and the total time of all actions.
Results can be visualized using i.e. Aggregate Report listener
More information: Using JMeter's Transaction Controller
