Hi,
You can use BeanShell Listener/Jsr223 Listener
In which you can access JMeter api.
For example in JSR223 Listener,
SampleResult[] subResults = sampleResult.getSubResults();
for(int i=0; i<subResults.length; i++){
long time = subResults[i].getTime(); //response time
}
Now u can access response time of individuals request.
Use other jmeter apis for more functionality.
Thanks and Regards
Hemant
9013982184
On Fri, Mar 27, 2015 at 12:15 PM, Devath Naik <[email protected]>
wrote:
> Hi ALL,
>
>
>
> We are using JMeter 2.11 for doing detailed performance analysis of a web
> application.
>
>
>
> There are multiple embedded resources (js/css) in a good number of web
> pages. Though we exclude them while recording, when we replay the server
> still responds by automatically a good number of these embedded resources
> too.
>
>
>
> Thus, to analyze the response time details further, we feel the need of the
> breakdown of response time of each hit. So, is there a way in JMeter where
> we can get the response time split up of each of this hit separately along
> with the total response time (elapsed time) of the http GET call.
>
>
>
> Do feel free to let us know if you need any other details.
>
>
> Thanks,
>
> Devath
>