This is a performance based question.

I have developed a Java EE Webservice Application based on Apache CXF Web Services. The application is working fine without any issues currently.

I just want to know how can we know how much time each thread (request) has taken for execution?

link|improve this question

75% accept rate
Can't you simply log the start time and end time of each request? – Azodious Jan 11 at 13:35
Ya Azodious , this would be fine for a single request , but what if we are executing 2000 requests at a time using any load tester tool like JMeter . – Kiran Jan 11 at 13:46
Each request will execute in a different thread; so differentiating time log shouldn't be a problem. Spparate files for each request should be fine; if mutithreading implementation is an issue. – Azodious Jan 11 at 13:49
ya agree with you , but want something in a GUI Way ( Looking for any open source tool ) – Kiran Jan 11 at 14:08
feedback

1 Answer

up vote 0 down vote accepted

The way this is done in real load testing tools (such as LoadRunner) is that you collect ALL the times into a database, and when producing a report you select the averages in blocks of x seconds from the database on the fly when you generate the report/graph. (The blocks of x seconds is often called Granularity)

This allows for changing the granularity to suit your needs when you generate the report.

And just to clarify here that executing 2000 requests AT THE SAME TIME is insane. It gives you little to nothing in terms of usable performance data. Executing 2000 requests over a time period is another thing entirely.

Ex. 2000 requests in a 30 second period gives you 66.66667 requests/sec (avg), and if the avg response time was 4 sec/request this would actually tell you something about the system performance..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.